From 0a050e926b5a43e14157a7103d13754b207eb78c Mon Sep 17 00:00:00 2001 From: rebornix Date: Sat, 23 Sep 2017 21:30:28 -0700 Subject: [PATCH] doc: fix outdated code sample in n-api.md code samples of napi_create_object and napi_property_descriptor were not updated to latest API. PR-URL: https://github.com/nodejs/node/pull/15581 Reviewed-By: Luigi Pinca Reviewed-By: James M Snell --- doc/api/n-api.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api/n-api.md b/doc/api/n-api.md index 08788765d2bd56..13ec0f3594436d 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -2349,7 +2349,7 @@ napi_status status = napi_status_generic_failure; // const obj = {}; napi_value obj; -status = napi_create_obj(env, &obj); +status = napi_create_object(env, &obj); if (status != napi_ok) return status; // Create napi_values for 123 and 456 @@ -2360,9 +2360,9 @@ status = napi_create_int32(env, 456, &barValue); if (status != napi_ok) return status; // Set the properties -napi_property_descriptors descriptors[] = { - { "foo", fooValue, 0, 0, 0, napi_default, 0 }, - { "bar", barValue, 0, 0, 0, napi_default, 0 } +napi_property_descriptor descriptors[] = { + { "foo", nullptr, 0, 0, 0, fooValue, napi_default, 0 }, + { "bar", nullptr, 0, 0, 0, barValue, napi_default, 0 } } status = napi_define_properties(env, obj,