Skip to content

Commit 7cc3b93

Browse files
cjihrigBridgeAR
authored andcommitted
doc: fix linting errors
PR-URL: #24229 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
1 parent 1cda9b3 commit 7cc3b93

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

doc/api/errors.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,10 @@ not capture any frames.
260260
* {string}
261261

262262
The `error.code` property is a string label that identifies the kind of error.
263-
`error.code` is the most stable way to identify an error. It will only change between major versions of Node.js. In contrast, `error.message` strings may change between any versions of Node.js. See [Node.js Error Codes][] for details about specific codes.
263+
`error.code` is the most stable way to identify an error. It will only change
264+
between major versions of Node.js. In contrast, `error.message` strings may
265+
change between any versions of Node.js. See [Node.js Error Codes][] for details
266+
about specific codes.
264267

265268
### error.message
266269

@@ -489,7 +492,8 @@ system error.
489492

490493
* {string|number}
491494

492-
The `error.errno` property is a number or a string. If it is a number, it is a negative value which corresponds to the error code defined in
495+
The `error.errno` property is a number or a string. If it is a number, it is a
496+
negative value which corresponds to the error code defined in
493497
[`libuv Error handling`]. See the libuv `errno.h` header file
494498
(`deps/uv/include/uv/errno.h` in the Node.js source tree) for details. In case
495499
of a string, it is the same as `error.code`.

0 commit comments

Comments
 (0)