Skip to content

Commit dbf7592

Browse files
doc: update error links
PR-URL: #793 Reviewed-by: Rod Vagg <rod@vagg.org>
1 parent fe744ec commit dbf7592

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/api/errors.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ down the process. These are usually failed `assert()` checks or `abort()` calls
254254
System errors are generated in response to a program's runtime environment.
255255
Ideally, they represent operational errors that the program needs to be able to
256256
react to. They are generated at the syscall level: an exhaustive list of error
257-
codes and their meanings is available by running `man 2 intro` on most Unices;
258-
or [online](http://man7.org/linux/man-pages/man2/intro.2.html).
257+
codes and their meanings is available by running `man 2 intro` or `man 3 errno`
258+
on most Unices; or [online](http://man7.org/linux/man-pages/man3/errno.3.html).
259259

260260
In io.js, system errors are represented as augmented Error objects -- not full
261261
subclasses, but instead an error instance with added members.
@@ -275,7 +275,7 @@ letters, and may be referenced in `man 2 intro`.
275275
### Common System Errors
276276

277277
This list is **not exhaustive**, but enumerates many of the common system errors when
278-
writing a io.js program. An exhaustive list may be found [here](http://man7.org/linux/man-pages/man2/intro.2.html).
278+
writing a io.js program. An exhaustive list may be found [here](http://man7.org/linux/man-pages/man3/errno.3.html).
279279

280280
#### EPERM: Operation not permitted
281281

0 commit comments

Comments
 (0)