From a1e1c152f2788a3c271d0ed036896bcdf224faaa 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] Fix example code --- 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.