From 38f2b1b226e9fb3a9d9e2c3c01dac8db664d5212 Mon Sep 17 00:00:00 2001 From: NickNaso Date: Sat, 30 Nov 2019 14:41:53 +0100 Subject: [PATCH 1/2] Fixed links to array documentation --- doc/object.md | 2 +- doc/value.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/object.md b/doc/object.md index 32410544f..1d6bffdbe 100644 --- a/doc/object.md +++ b/doc/object.md @@ -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) and extends [`Napi::Array`](basic_types.md#array) - [`Napi::ArrayBuffer`](array_buffer.md) - [`Napi::Buffer`](buffer.md) - [`Napi::Function`](function.md) diff --git a/doc/value.md b/doc/value.md index 2d25eb74f..99f9e4911 100644 --- a/doc/value.md +++ b/doc/value.md @@ -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) From 1f3fac881d4e387cef1103413b8cab079eb7c369 Mon Sep 17 00:00:00 2001 From: NickNaso Date: Sat, 30 Nov 2019 15:49:20 +0100 Subject: [PATCH 2/2] Fixed as requested. --- doc/object.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/object.md b/doc/object.md index 1d6bffdbe..ddc97f7f1 100644 --- a/doc/object.md +++ b/doc/object.md @@ -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`](basic_types.md#array) +- [`Napi::Value`](value.md) which is extended by [`Napi::Array`](basic_types.md#array) - [`Napi::ArrayBuffer`](array_buffer.md) - [`Napi::Buffer`](buffer.md) - [`Napi::Function`](function.md)