From c4f3729db638636353e8850727e282457c14c49e Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 20 Mar 2022 22:12:33 -0700 Subject: [PATCH] doc: update property name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Property name `min` was updated in 23637e9a3b208892449 to `lowest` but an instance of `min` was missed. PR-URL: https://github.com/nodejs/node/pull/42398 Reviewed-By: Richard Lau Reviewed-By: Tobias Nießen Reviewed-By: Mestery Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig Reviewed-By: Harshitha K P --- doc/api/perf_hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md index 8c2a128861f..bad0c506d0a 100644 --- a/doc/api/perf_hooks.md +++ b/doc/api/perf_hooks.md @@ -896,7 +896,7 @@ added: v15.9.0 * `lowest` {number|bigint} The lowest discernible value. Must be an integer value greater than 0. **Default:** `1`. * `highest` {number|bigint} The highest recordable value. Must be an integer - value that is equal to or greater than two times `min`. + value that is equal to or greater than two times `lowest`. **Default:** `Number.MAX_SAFE_INTEGER`. * `figures` {number} The number of accuracy digits. Must be a number between `1` and `5`. **Default:** `3`.