File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -254,8 +254,8 @@ down the process. These are usually failed `assert()` checks or `abort()` calls
254
254
System errors are generated in response to a program's runtime environment.
255
255
Ideally, they represent operational errors that the program needs to be able to
256
256
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 ) .
259
259
260
260
In io.js, system errors are represented as augmented Error objects -- not full
261
261
subclasses, but instead an error instance with added members.
@@ -275,7 +275,7 @@ letters, and may be referenced in `man 2 intro`.
275
275
### Common System Errors
276
276
277
277
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 ) .
279
279
280
280
#### EPERM: Operation not permitted
281
281
You can’t perform that action at this time.
0 commit comments