| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent fd6b305 commit 4f2e254
6 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -776,7 +776,7 @@ added: v0.1.90 | |||
| 776 | 776 | * `signal` {String} | |
| 777 | 777 | ||
| 778 | 778 | The `child.kill()` methods sends a signal to the child process. If no argument | |
| 779 | - is given, the process will be sent the `'SIGTERM'` signal. See `signal(7)` for | ||
| 779 | + is given, the process will be sent the `'SIGTERM'` signal. See signal(7) for | ||
| 780 | 780 | a list of available signals. | |
| 781 | 781 | ||
| 782 | 782 | ```js | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -184,7 +184,7 @@ added: v0.1.100 | |||
| 184 | 184 | ||
| 185 | 185 | Prints to `stderr` with newline. Multiple arguments can be passed, with the | |
| 186 | 186 | first used as the primary message and all additional used as substitution | |
| 187 | - values similar to `printf(3)` (the arguments are all passed to | ||
| 187 | + values similar to printf(3) (the arguments are all passed to | ||
| 188 | 188 | [`util.format()`][]). | |
| 189 | 189 | ||
| 190 | 190 | ```js | |
@@ -213,7 +213,7 @@ added: v0.1.100 | |||
| 213 | 213 | ||
| 214 | 214 | Prints to `stdout` with newline. Multiple arguments can be passed, with the | |
| 215 | 215 | first used as the primary message and all additional used as substitution | |
| 216 | - values similar to `printf(3)` (the arguments are all passed to | ||
| 216 | + values similar to printf(3) (the arguments are all passed to | ||
| 217 | 217 | [`util.format()`][]). | |
| 218 | 218 | ||
| 219 | 219 | ```js | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -394,14 +394,14 @@ Under the hood, [`dns.lookup()`][] uses the same operating system facilities | |||
| 394 | 394 | as most other programs. For instance, [`dns.lookup()`][] will almost always | |
| 395 | 395 | resolve a given name the same way as the `ping` command. On most POSIX-like | |
| 396 | 396 | operating systems, the behavior of the [`dns.lookup()`][] function can be | |
| 397 | - modified by changing settings in `nsswitch.conf(5)` and/or `resolv.conf(5)`, | ||
| 397 | + modified by changing settings in nsswitch.conf(5) and/or resolv.conf(5), | ||
| 398 | 398 | but note that changing these files will change the behavior of _all other | |
| 399 | 399 | programs running on the same operating system_. | |
| 400 | 400 | ||
| 401 | 401 | Though the call to `dns.lookup()` will be asynchronous from JavaScript's | |
| 402 | - perspective, it is implemented as a synchronous call to `getaddrinfo(3)` that | ||
| 402 | + perspective, it is implemented as a synchronous call to getaddrinfo(3) that | ||
| 403 | 403 | runs on libuv's threadpool. Because libuv's threadpool has a fixed size, it | |
| 404 | - means that if for whatever reason the call to `getaddrinfo(3)` takes a long | ||
| 404 | + means that if for whatever reason the call to getaddrinfo(3) takes a long | ||
| 405 | 405 | time, other operations that could run on libuv's threadpool (such as filesystem | |
| 406 | 406 | operations) will experience degraded performance. In order to mitigate this | |
| 407 | 407 | issue, one potential solution is to increase the size of libuv's threadpool by | |
@@ -412,7 +412,7 @@ setting the `'UV_THREADPOOL_SIZE'` environment variable to a value greater than | |||
| 412 | 412 | ### `dns.resolve()`, `dns.resolve*()` and `dns.reverse()` | |
| 413 | 413 | ||
| 414 | 414 | These functions are implemented quite differently than [`dns.lookup()`][]. They | |
| 415 | - do not use `getaddrinfo(3)` and they _always_ perform a DNS query on the | ||
| 415 | + do not use getaddrinfo(3) and they _always_ perform a DNS query on the | ||
| 416 | 416 | network. This network communication is always done asynchronously, and does not | |
| 417 | 417 | use libuv's threadpool. | |
| 418 | 418 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -212,21 +212,21 @@ page. | |||
| 212 | 212 | The times in the stat object have the following semantics: | |
| 213 | 213 | ||
| 214 | 214 | * `atime` "Access Time" - Time when file data last accessed. Changed | |
| 215 | - by the `mknod(2)`, `utimes(2)`, and `read(2)` system calls. | ||
| 215 | + by the mknod(2), utimes(2), and read(2) system calls. | ||
| 216 | 216 | * `mtime` "Modified Time" - Time when file data last modified. | |
| 217 | - Changed by the `mknod(2)`, `utimes(2)`, and `write(2)` system calls. | ||
| 217 | + Changed by the mknod(2), utimes(2), and write(2) system calls. | ||
| 218 | 218 | * `ctime` "Change Time" - Time when file status was last changed | |
| 219 | - (inode data modification). Changed by the `chmod(2)`, `chown(2)`, | ||
| 220 | - `link(2)`, `mknod(2)`, `rename(2)`, `unlink(2)`, `utimes(2)`, | ||
| 221 | - `read(2)`, and `write(2)` system calls. | ||
| 219 | + (inode data modification). Changed by the chmod(2), chown(2), | ||
| 220 | + link(2), mknod(2), rename(2), unlink(2), utimes(2), | ||
| 221 | + read(2), and write(2) system calls. | ||
| 222 | 222 | * `birthtime` "Birth Time" - Time of file creation. Set once when the | |
| 223 | 223 | file is created. On filesystems where birthtime is not available, | |
| 224 | 224 | this field may instead hold either the `ctime` or | |
| 225 | 225 | `1970-01-01T00:00Z` (ie, unix epoch timestamp `0`). Note that this | |
| 226 | 226 | value may be greater than `atime` or `mtime` in this case. On Darwin | |
| 227 | 227 | and other FreeBSD variants, also set if the `atime` is explicitly | |
| 228 | 228 | set to an earlier value than the current `birthtime` using the | |
| 229 | - `utimes(2)` system call. | ||
| 229 | + utimes(2) system call. | ||
| 230 | 230 | ||
| 231 | 231 | Prior to Node v0.12, the `ctime` held the `birthtime` on Windows | |
| 232 | 232 | systems. Note that as of v0.12, `ctime` is not "creation time", and | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -207,7 +207,7 @@ added: v0.7.5 | |||
| 207 | 207 | **This does not work on Windows.** | |
| 208 | 208 | ||
| 209 | 209 | Emitted whenever the `input` stream is sent to the background with `^Z`, | |
| 210 | - respectively known as `SIGTSTP`, and then continued with `fg(1)`. This event | ||
| 210 | + respectively known as `SIGTSTP`, and then continued with fg(1). This event | ||
| 211 | 211 | only emits if the stream was not paused before sending the program to the | |
| 212 | 212 | background. | |
| 213 | 213 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -359,7 +359,7 @@ connect to a long-running Node.js process without restarting it. | |||
| 359 | 359 | For an example of running a "full-featured" (`terminal`) REPL over | |
| 360 | 360 | a `net.Server` and `net.Socket` instance, see: https://gist.github.com/2209310 | |
| 361 | 361 | ||
| 362 | - For an example of running a REPL instance over `curl(1)`, | ||
| 362 | + For an example of running a REPL instance over curl(1), | ||
| 363 | 363 | see: https://gist.github.com/2053342 | |
| 364 | 364 | ||
| 365 | 365 | [`readline.prompt`]: readline.html#readline_rl_prompt_preservecursor | |
| Back | FazBrowse Home | New Git URL |
0 commit comments