From aea66527a4138a3b18f1d1648842575a3c920fa4 Mon Sep 17 00:00:00 2001 From: Marly Fleitas Date: Fri, 24 Jan 2020 07:41:05 +0100 Subject: [PATCH] doc: fix example code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node-addon-api/pull/657 Reviewed-By: Nicola Del Gobbo Reviewed-By: Gabriel Schulhof Reviewed-By: Michael Dawson Reviewed-By: Tobias Nießen --- doc/async_worker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/async_worker.md b/doc/async_worker.md index 048be9e..d7753ac 100644 --- a/doc/async_worker.md +++ b/doc/async_worker.md @@ -409,7 +409,7 @@ The following code shows an example of how to create and use an `Napi::AsyncWork // Include EchoWorker class // .. -use namespace Napi; +using namespace Napi; Value Echo(const CallbackInfo& info) { // You need to validate the arguments here.