From 4d816183daadd1fec9411f9a3c566b098059e02b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Tim=C3=A1r=2C=20Dr?= 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 048be9e88..d7753ac8c 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.