Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

doc: updates cherry picked from master #25811

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2802,7 +2802,7 @@
- Support for parallel use of the cache folder
- Retry on registry timeouts or network failures (Trent Mick)
- Reduce 'engines' failures to a warning
- Use new zsh completion if aviailable (Jeremy Cantrell)
- Use new zsh completion if available (Jeremy Cantrell)

* Fix #3577 Un-break require('sys')

Expand Down
2 changes: 1 addition & 1 deletion doc/api/addons.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ knowledge of several libraries:
creating objects, calling functions, etc. Documented mostly in the
`v8.h` header file (`deps/v8/include/v8.h` in the Node source
tree), which is also available
[online](http://izs.me/v8-docs/main.html).
[online](http://v8dox.com/).

- [libuv](https://github.com/joyent/libuv), C event loop library.
Anytime one needs to wait for a file descriptor to become readable,
Expand Down
2 changes: 1 addition & 1 deletion doc/api/assert.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Stability: 5 - Locked

This module is used for writing unit tests for your applications, you can
This module is used for testing actual values against expected values, you can
access it with `require('assert')`.

## assert.fail(actual, expected, message, operator)
Expand Down
2 changes: 1 addition & 1 deletion doc/api/buffer.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ may be beyond the end of the buffer. Defaults to `false`.

Decodes and returns a string from buffer data encoded using the specified
character set encoding. If `encoding` is `undefined` or `null`, then `encoding`
defaults to `'utf8'. The `start` and `end` parameters default to `0` and
defaults to `'utf8'`. The `start` and `end` parameters default to `0` and
`buffer.length` when `undefined`.

buf = new Buffer(26);
Expand Down
2 changes: 1 addition & 1 deletion doc/api/vm.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Example: compile and execute code that increments a global variable and sets a
new one. These globals are contained in the sandbox.

var util = require('util');
var vm = require('vm'),
var vm = require('vm');

var sandbox = {
animal: 'cat',
Expand Down