Skip to content

Commit

Permalink
Update README.md (#76)
Browse files Browse the repository at this point in the history
fix grammar
  • Loading branch information
claushellsing authored and bijection committed Oct 31, 2016
1 parent d7ba0e3 commit 157d9b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -76,7 +76,7 @@ You can [head to the docs](#docs) for a full treatment of the API.

## Tesseract.recognize(image: [ImageLike](#imagelike)[, options]) -> [TesseractJob](#tesseractjob)
Figures out what words are in `image`, where the words are in `image`, etc.
> Note: `image` should be be sufficiently high resolution.
> Note: `image` should be sufficiently high resolution.
> Often, the same image will get much better results if you upscale it before calling `recognize`.
- `image` is any [ImageLike](#imagelike) object.
Expand Down Expand Up @@ -150,7 +150,7 @@ In NodeJS, an image can be

## TesseractJob

A TesseractJob is an an object returned by a call to `recognize` or `detect`. It's inspired by the ES6 Promise interface and provides `then` and `catch` methods. It also provides `finally` method, which will be fired regardless of the job fate. One important difference is that these methods return the job itself (to enable chaining) rather than new.
A TesseractJob is an object returned by a call to `recognize` or `detect`. It's inspired by the ES6 Promise interface and provides `then` and `catch` methods. It also provides `finally` method, which will be fired regardless of the job fate. One important difference is that these methods return the job itself (to enable chaining) rather than new.

Typical use is:
```javascript
Expand Down

0 comments on commit 157d9b0

Please sign in to comment.