diff --git a/demo.js b/demo.js index c42f5e6..be9d7ab 100644 --- a/demo.js +++ b/demo.js @@ -206,7 +206,7 @@ document.body.addEventListener('drop', function(e){ var reader = new FileReader(); Tesseract.recognize(file, language) - .progress( progress ) + .progress( progressUpdate ) .then( result ) reader.onload = function(e){ diff --git a/index.html b/index.html index 36f3e49..bee62e0 100644 --- a/index.html +++ b/index.html @@ -33,7 +33,7 @@ -->
Tesseract.js is a pure Javascript port of the popular Tesseract OCR engine.
-This library supports over 60 languanges, automatic text orientation and script detection, a simple interface for reading paragraph, word, and character bounding boxes. Tesseract.js can run either in a browser and on a server with NodeJS.
+This library supports over 60 languages, automatic text orientation and script detection, a simple interface for reading paragraph, word, and character bounding boxes. Tesseract.js can run either in a browser and on a server with NodeJS.
Check out the Example code and API docs on GitHub.