doc: replace "below" with "following"
Ref: https://learn.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/b/below PR-URL: https://github.com/nodejs/node/pull/52315 Refs: https://learn.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/b/below Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
This commit is contained in:
parent
8df54481f4
commit
4df34cf6dd
@ -845,8 +845,8 @@ class MyObject : public node::ObjectWrap {
|
||||
```
|
||||
|
||||
In `myobject.cc`, implement the various methods that are to be exposed.
|
||||
Below, the method `plusOne()` is exposed by adding it to the constructor's
|
||||
prototype:
|
||||
In the following code, the method `plusOne()` is exposed by adding it to the
|
||||
constructor's prototype:
|
||||
|
||||
```cpp
|
||||
// myobject.cc
|
||||
|
@ -42,7 +42,8 @@ In this example, the variable `PI` is private to `circle.js`.
|
||||
The `module.exports` property can be assigned a new value (such as a function
|
||||
or object).
|
||||
|
||||
Below, `bar.js` makes use of the `square` module, which exports a Square class:
|
||||
In the following code, `bar.js` makes use of the `square` module, which exports
|
||||
a Square class:
|
||||
|
||||
```js
|
||||
const Square = require('./square.js');
|
||||
@ -123,7 +124,7 @@ enough to support reasonable directory structures. Package manager programs
|
||||
such as `dpkg`, `rpm`, and `npm` will hopefully find it possible to build
|
||||
native packages from Node.js modules without modification.
|
||||
|
||||
Below we give a suggested directory structure that could work:
|
||||
In the following, we give a suggested directory structure that could work:
|
||||
|
||||
Let's say that we wanted to have the folder at
|
||||
`/usr/lib/node/<some-package>/<some-version>` hold the contents of a
|
||||
|
Loading…
x
Reference in New Issue
Block a user