From f75dd8b4424440efc5f052dd20f3557154bbad3d Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 4 Jun 2020 11:41:01 +0200 Subject: [PATCH] doc: fix minor typo in object_wrap.md --- doc/object_wrap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/object_wrap.md b/doc/object_wrap.md index 5a0ec1036..cdf7ce1e2 100644 --- a/doc/object_wrap.md +++ b/doc/object_wrap.md @@ -137,7 +137,7 @@ static T* Napi::ObjectWrap::Unwrap(Napi::Object wrapper); * `[in] wrapper`: The JavaScript object that wraps the native instance. -Returns a native instace wrapped in a JavaScript object. Given the +Returns a native instance wrapped in a JavaScript object. Given the Napi:Object, this allows a method to get a pointer to the wrapped C++ object and then reference fields, call methods, etc. within that class. In many cases calling Unwrap is not required, as methods can