Skip to content

Commit a562aba

Browse files
geirhaBethGriggs
authored andcommitted
doc: hello addon example should return "world"
The N-API version of the hello example, returned "hello" instead of "world". PR-URL: #26328 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Anto Aravinth <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 99c555a commit a562aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/addons.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ napi_value Method(napi_env env, napi_callback_info args) {
386386
napi_value greeting;
387387
napi_status status;
388388

389-
status = napi_create_string_utf8(env, "hello", NAPI_AUTO_LENGTH, &greeting);
389+
status = napi_create_string_utf8(env, "world", NAPI_AUTO_LENGTH, &greeting);
390390
if (status != napi_ok) return nullptr;
391391
return greeting;
392392
}

0 commit comments

Comments
 (0)