doc: remove "For example" expression in N-API doc

PR-URL: https://github.com/nodejs/node/pull/20187
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
Gabriel Schulhof 2018-04-20 22:43:42 -04:00
parent cc8a33edbc
commit a71f9baa40

View File

@ -927,8 +927,8 @@ convenience. If `Init` returns NULL, the parameter passed as `exports` is
exported by the module. N-API modules cannot modify the `module` object but can
specify anything as the `exports` property of the module.
For example, to add the method `hello` as a function so that it can be called
as a method provided by the addon:
To add the method `hello` as a function so that it can be called as a method
provided by the addon:
```C
napi_value Init(napi_env env, napi_value exports) {
@ -942,7 +942,7 @@ napi_value Init(napi_env env, napi_value exports) {
}
```
For example, to set a function to be returned by the `require()` for the addon:
To set a function to be returned by the `require()` for the addon:
```C
napi_value Init(napi_env env, napi_value exports) {
@ -954,8 +954,8 @@ napi_value Init(napi_env env, napi_value exports) {
}
```
For example, to define a class so that new instances can be created
(often used with [Object Wrap][]):
To define a class so that new instances can be created (often used with
[Object Wrap][]):
```C
// NOTE: partial example, not all referenced code is included