From 27fa30d713912274e4d8170ad28d41fb9ca84107 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 13 Oct 2019 20:34:02 -0300 Subject: [PATCH] doc: fix spelling in ObjectWrap doc --- doc/object_wrap.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/object_wrap.md b/doc/object_wrap.md index 082c4eabe..1db658a91 100644 --- a/doc/object_wrap.md +++ b/doc/object_wrap.md @@ -161,7 +161,7 @@ static Napi::Function Napi::ObjectWrap::DefineClass(Napi::Env env, JavaScript constructor function. * `[in] properties`: Initializer list of class property descriptor describing static and instance properties and methods of the class. -See: [`Class propertry and descriptor`](class_property_descriptor.md). +See: [`Class property and descriptor`](class_property_descriptor.md). * `[in] data`: User-provided data passed to the constructor callback as `data` property of the `Napi::CallbackInfo`. @@ -184,7 +184,7 @@ static Napi::Function Napi::ObjectWrap::DefineClass(Napi::Env env, JavaScript constructor function. * `[in] properties`: Vector of class property descriptor describing static and instance properties and methods of the class. -See: [`Class propertry and descriptor`](class_property_descriptor.md). +See: [`Class property and descriptor`](class_property_descriptor.md). * `[in] data`: User-provided data passed to the constructor callback as `data` property of the `Napi::CallbackInfo`.