This commit is contained in:
Adam Demirel 2019-04-09 08:18:47 +10:00 committed by GitHub
parent 0789e3833d
commit 9ad3206367
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -114,5 +114,5 @@ Promisification is a great approach, especially when you use `async/await` (see
Remember, a promise may have only one result, but a callback may technically be called many times.
So promisification is only meant for functions that call the callback once. Furhter calls will be ignored.
So promisification is only meant for functions that call the callback once. Further calls will be ignored.
```