From 7c5172846b1deaaae2416e5a818a0bf48586f586 Mon Sep 17 00:00:00 2001 From: Jason Date: Thu, 3 Oct 2019 10:26:16 -0400 Subject: [PATCH] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4c27c8..5c024a4 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ const worker = createWorker({ await worker.initialize('eng'); const { data: { text } } = await worker.recognize('https://tesseract.projectnaptha.com/img/eng_bw.png'); console.log(text); - await woker.terminate(); + await worker.terminate(); })(); ```