Skip to content

Commit

Permalink
doc: fix links to the Property Descriptor docs
Browse files Browse the repository at this point in the history
PR-URL: #458
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: NickNaso <nicoladelgobbo@gmail.com>
  • Loading branch information
okuryu authored and mhdawson committed Mar 15, 2019
1 parent fcfc612 commit 72b1975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/object.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Note: This is equivalent to the JavaScript instanceof operator.
```cpp
void Napi::Object::DefineProperty (const Napi::PropertyDescriptor& property);
```
- `[in] property`: A [`Napi::PropertyDescriptor`](propertydescriptor.md).
- `[in] property`: A [`Napi::PropertyDescriptor`](property_descriptor.md).
Define a property on the object.
Expand All @@ -151,7 +151,7 @@ Define a property on the object.
```cpp
void Napi::Object::DefineProperties (____ properties)
```
- `[in] properties`: A list of [`Napi::PropertyDescriptor`](propertydescriptor.md). Can be one of the following types:
- `[in] properties`: A list of [`Napi::PropertyDescriptor`](property_descriptor.md). Can be one of the following types:
- const std::initializer_list<Napi::PropertyDescriptor>&
- const std::vector<Napi::PropertyDescriptor>&

Expand Down

0 comments on commit 72b1975

Please sign in to comment.