From ad6f569f85a6794f655df34cf03755ca25c7d40a Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Singh Date: Sun, 27 Jan 2019 19:08:05 +0530 Subject: [PATCH] doc: dix typo Fixes type at line 27 of doc/number.md. PR-URL: https://github.com/nodejs/node-addon-api/pull/435 Reviewed-By: Nicola Del Gobbo Reviewed-By: Michael Dawson --- doc/number.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/number.md b/doc/number.md index 8226909a8..fc062a7fb 100644 --- a/doc/number.md +++ b/doc/number.md @@ -24,7 +24,7 @@ Creates a new instance of a `Napi::Number` object. Napi::Number(napi_env env, napi_value value); ``` - - `[in] env`: The `napi_env` environment in which to construct the `Napi::Nuber` object. + - `[in] env`: The `napi_env` environment in which to construct the `Napi::Number` object. - `[in] value`: The `napi_value` which is a handle for a JavaScript `Number`. Returns a non-empty `Napi::Number` object.