From 4e2fefc2d0a82d8fadd9916654802e046eda8a96 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 0bbd4af4e6f3f2..9819929a99ec1a 100644 --- a/doc/api/perf_hooks.md +++ b/doc/api/perf_hooks.md @@ -904,7 +904,7 @@ added: * `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`.