From c1588887a6b6a250f8acd53d3f4d2fcdb73007e1 Mon Sep 17 00:00:00 2001 From: Davidson Francis Date: Mon, 21 Jun 2021 00:11:48 -0300 Subject: [PATCH] doc: fix napi_default_property name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the napi_default_jsproperty flag of the napi_property_attributes enum that was incorrectly referred to as napi_default_property. Signed-off-by: Davidson Francis PR-URL: https://github.com/nodejs/node/pull/39104 Reviewed-By: Chengzhong Wu Reviewed-By: Tobias Nießen Reviewed-By: Gerhard Stöbich --- doc/api/n-api.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/n-api.md b/doc/api/n-api.md index dca306b83cdede..6115bc14674429 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -3798,7 +3798,7 @@ typedef enum { napi_default_method = napi_writable | napi_configurable, // Default for object properties, like in JS obj[prop]. - napi_default_property = napi_writable | + napi_default_jsproperty = napi_writable | napi_enumerable | napi_configurable, } napi_property_attributes; @@ -3821,8 +3821,8 @@ They can be one or more of the following bitflags: [`napi_define_class`][]. It is ignored by `napi_define_properties`. * `napi_default_method`: Like a method in a JS class, the property is configurable and writeable, but not enumerable. -* `napi_default_property`: Like a property set via assignment in JavaScript, the - property is writable, enumerable, and configurable. +* `napi_default_jsproperty`: Like a property set via assignment in JavaScript, + the property is writable, enumerable, and configurable. #### napi_property_descriptor