Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
working on fixing github ci
  • Loading branch information
Gabriel Schulhof committed Jan 26, 2021
commit 97dc2f847ac4da19385fcbb2ff3dd7b1a4f98595
4 changes: 2 additions & 2 deletions doc/api/addons.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ There are three options for implementing addons: the Node.js API, nan, or
direct use of internal V8, libuv and Node.js libraries. Unless there is a need
for direct access to functionality which is not exposed by the Node.js API, use
the Node.js API.
Refer to [C/C++ addons with the Node.js API](node--api.md) for more information
Refer to [C/C++ addons with the Node.js API](node-api.md) for more information
on the Node.js API.

When not using the Node.js API, implementing addons is complicated,
Expand Down Expand Up @@ -457,7 +457,7 @@ in the Node.js API are used.

Creating and maintaining an addon that benefits from the ABI stability
provided by the Node.js API carries with it certain
[implementation considerations](node-api.md#n_api_implications_of_abi_stability).
[implementation considerations](node-api.md#node_api_implications_of_abi_stability).

To use the Node.js API in the above "Hello world" example, replace the content
of `hello.cc` with the following. All other instructions remain the same.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Original file line number Diff line number Diff line change
Expand Up @@ -2491,7 +2491,7 @@ util.log('Timestamped message.');
[`WebAssembly.Module`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module
[`assert.deepStrictEqual()`]: assert.md#assert_assert_deepstrictequal_actual_expected_message
[`console.error()`]: console.md#console_console_error_data_args
[`node_api_create_external()`]: n-api.md#node_api_node_api_create_external
[`node_api_create_external()`]: node-api.md#node_api_node_api_create_external
[`target` and `handler`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy#Terminology
[`tty.hasColors()`]: tty.md#tty_writestream_hascolors_count_env
[`util.format()`]: #util_util_format_format_args
Expand Down
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,6 @@ static void GetUserInfo(const FunctionCallbackInfo<Value>& args) {
[C++ coding style]: ../doc/guides/cpp-style-guide.md
[Callback scopes]: #callback-scopes
[JavaScript value handles]: #js-handles
[the Node.js API]: https://nodejs.org/api/node-api.html
[`BaseObject`]: #baseobject
[`Context`]: #context
[`Environment`]: #environment
Expand Down Expand Up @@ -985,3 +984,4 @@ static void GetUserInfo(const FunctionCallbackInfo<Value>& args) {
[libuv requests]: #libuv-handles-and-requests
[libuv]: https://libuv.org/
[reference documentation for the libuv API]: http://docs.libuv.org/en/v1.x/
[the Node.js API]: https://nodejs.org/api/node-api.html