@@ -284,7 +284,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticMethod(Symbol name,
284284 void* data = nullptr);
285285```
286286
287- - ` [in] name ` : Napi: Symbol that represents the name of a static
287+ - ` [in] name ` : Napi:: Symbol that represents the name of a static
288288method for the class.
289289- ` [in] method ` : The native function that represents a static method of a
290290JavaScript class.
@@ -308,7 +308,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticMethod(Symbol name,
308308```
309309
310310method for the class.
311- - `[in] name`: Napi:Symbol that represents the name of a static.
311+ - `[in] name`: Napi:: Symbol that represents the name of a static.
312312- `[in] method`: The native function that represents a static method of a
313313JavaScript class.
314314- `[in] attributes`: The attributes associated with a particular property.
@@ -380,7 +380,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticMethod(Symbol name,
380380
381381- ` [in] method ` : The native function that represents a static method of a
382382JavaScript class.
383- - ` [in] name ` : Napi: Symbol that represents the name of a static
383+ - ` [in] name ` : Napi:: Symbol that represents the name of a static
384384method for the class.
385385- ` [in] attributes ` : The attributes associated with a particular property.
386386One or more of ` napi_property_attributes ` .
@@ -403,7 +403,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticMethod(Symbol name,
403403
404404- `[in] method`: The native function that represents a static method of a
405405JavaScript class.
406- - `[in] name`: Napi:Symbol that represents the name of a static.
406+ - `[in] name`: Napi:: Symbol that represents the name of a static.
407407- `[in] attributes`: The attributes associated with a particular property.
408408One or more of `napi_property_attributes`.
409409- `[in] data`: User-provided data passed into method when it is invoked.
@@ -452,7 +452,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticAccessor(Symbol name,
452452 void* data = nullptr);
453453```
454454
455- - `[in] name`: Napi:Symbol that represents the name of a static accessor.
455+ - `[in] name`: Napi:: Symbol that represents the name of a static accessor.
456456- `[in] getter`: The native function to call when a get access to the property
457457of a JavaScript class is performed.
458458- `[in] setter`: The native function to call when a set access to the property
@@ -508,7 +508,7 @@ static Napi::PropertyDescriptor Napi::ObjectWrap::StaticAccessor(Symbol name,
508508of a JavaScript class is performed.
509509- `[in] setter`: The native function to call when a set access to the property
510510of a JavaScript class is performed.
511- - `[in] name`: Napi:Symbol that represents the name of a static accessor.
511+ - `[in] name`: Napi:: Symbol that represents the name of a static accessor.
512512- `[in] attributes`: The attributes associated with a particular property.
513513One or more of `napi_property_attributes`.
514514- `[in] data`: User-provided data passed into getter or setter when
0 commit comments