Skip to content

Commit

Permalink
doc: hello addon example should return "world"
Browse files Browse the repository at this point in the history
The N-API version of the hello example, returned "hello" instead of "world".
  • Loading branch information
geirha committed Feb 26, 2019
1 parent 907941d commit 6ff96a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/addons.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ napi_value Method(napi_env env, napi_callback_info args) {
napi_value greeting;
napi_status status;

status = napi_create_string_utf8(env, "hello", NAPI_AUTO_LENGTH, &greeting);
status = napi_create_string_utf8(env, "world", NAPI_AUTO_LENGTH, &greeting);
if (status != napi_ok) return nullptr;
return greeting;
}
Expand Down

0 comments on commit 6ff96a3

Please sign in to comment.