aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJongChan Choi <disjukr@naver.com>2017-05-31 14:04:14 +0900
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2017-05-31 10:35:39 +0300
commitfd54b10500724a7f59f448635f2ec96759495339 (patch)
treeefaa3a6e6f4d98dfb992e70af029a9dafd1dc08a
parent3b12a8d6e7a053ba873de5a9b3c1d580ada294ac (diff)
downloadandroid-node-v8-fd54b10500724a7f59f448635f2ec96759495339.tar.gz
android-node-v8-fd54b10500724a7f59f448635f2ec96759495339.tar.bz2
android-node-v8-fd54b10500724a7f59f448635f2ec96759495339.zip
doc: fix typo in n-api.md
PR-URL: https://github.com/nodejs/node/pull/13323 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
-rw-r--r--doc/api/n-api.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index e98233215a..d1fb432d7d 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -530,7 +530,7 @@ Taking the earlier example, adding calls to [`napi_open_handle_scope`][] and
is valid throughout the execution of the loop:
```C
-for (int i = 0; i < 1000000; i++) {napi_
+for (int i = 0; i < 1000000; i++) {
napi_handle_scope scope;
napi_status status = napi_open_handle_scope(env, &scope);
if (status != napi_ok) {