From 6487f2b57926f9e5fde10a7502a1ff6c3deb9db7 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Mon, 6 May 2019 23:40:19 +0200 Subject: [PATCH] Update asyncworker.md --- doc/asyncworker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/asyncworker.md b/doc/asyncworker.md index 3963ff57..04231f83 100644 --- a/doc/asyncworker.md +++ b/doc/asyncworker.md @@ -68,7 +68,7 @@ class AsyncWorker { `Nan::AsyncProgressWorkerBase` is an _abstract_ class template that extends `Nan::AsyncWorker` and adds additional progress reporting callbacks that can be used during the asynchronous work execution to provide progress data back to JavaScript. -Previously the definiton of `Nan::AsyncProgressWorker` only allowed sending `const char` data. Now extending `Nan::AsyncProgressWorker` will yield an instance of the implicit `Nan::AsyncProgressWorkerBase` template with type `` for compatibility. +Previously the definition of `Nan::AsyncProgressWorker` only allowed sending `const char` data. Now extending `Nan::AsyncProgressWorker` will yield an instance of the implicit `Nan::AsyncProgressWorkerBase` template with type `` for compatibility. `Nan::AsyncProgressWorkerBase` & `Nan::AsyncProgressWorker` is intended for best-effort delivery of nonessential progress messages, e.g. a progress bar. The last event sent before the main thread is woken will be delivered.