Skip to content

Commit

Permalink
[doc] Fixed links to array documentation (#613)
Browse files Browse the repository at this point in the history
* Fixed links to array documentation
  • Loading branch information
NickNaso authored and mhdawson committed Dec 5, 2019
1 parent 3dfb1f0 commit e71d0ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/object.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The `Napi::Object` class corresponds to a JavaScript object. It is extended by the following node-addon-api classes that you may use when working with more specific types:

- [`Napi::Value`](value.md) and extends [`Napi::Array`](array.md)
- [`Napi::Value`](value.md) which is extended by [`Napi::Array`](basic_types.md#array)
- [`Napi::ArrayBuffer`](array_buffer.md)
- [`Napi::Buffer<T>`](buffer.md)
- [`Napi::Function`](function.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/value.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Value is a the base class upon which other JavaScript values such as Number, Boo

The following classes inherit, either directly or indirectly, from `Napi::Value`:

- [`Napi::Array`](array.md)
- [`Napi::Array`](basic_types.md#array)
- [`Napi::ArrayBuffer`](array_buffer.md)
- [`Napi::Boolean`](boolean.md)
- [`Napi::Buffer`](buffer.md)
Expand Down

0 comments on commit e71d0ea

Please sign in to comment.