diff --git a/doc/api/assert.md b/doc/api/assert.md index 822e05aa1c7fe8..cc65dbcf6e379a 100644 --- a/doc/api/assert.md +++ b/doc/api/assert.md @@ -115,7 +115,7 @@ assert.deepEqual([[[1, 2, 3]], 4, 5], [[[1, 2, '3']], 4, 5]); ``` To deactivate the colors, use the `NODE_DISABLE_COLORS` environment variable. -Please note that this will also deactivate the colors in the REPL. +This will also deactivate the colors in the REPL. ## Legacy mode @@ -1029,7 +1029,7 @@ assert.rejects( }); ``` -Note that `error` cannot be a string. If a string is provided as the second +`error` cannot be a string. If a string is provided as the second argument, then `error` is assumed to be omitted and the string will be used for `message` instead. This can lead to easy-to-miss mistakes. Please read the example in [`assert.throws()`][] carefully if using a string as the second @@ -1131,7 +1131,7 @@ assert.throws( nested: true, baz: 'text' } - // Note that only properties on the validation object will be tested for. + // Only properties on the validation object will be tested for. // Using nested objects requires all properties to be present. Otherwise // the validation is going to fail. } @@ -1217,7 +1217,7 @@ assert.throws( ); ``` -Note that `error` cannot be a string. If a string is provided as the second +`error` cannot be a string. If a string is provided as the second argument, then `error` is assumed to be omitted and the string will be used for `message` instead. This can lead to easy-to-miss mistakes. Using the same message as the thrown error message is going to result in an