Corrects a typo

This commit is contained in:
Artem Zakharchenko 2018-09-15 19:09:14 +02:00
parent 848b80223f
commit 553d2d1b52

View File

@ -234,7 +234,7 @@ function getRecentPosts(posts) {
}
```
> Some language-specific assumptions may allow to ommit the context. For example, in JavaScript it is common that `filter` operates on Array. Adding explicit `filterArray` would be unnecessary.
> Some language-specific assumptions may allow to omit the context. For example, in JavaScript it is common that `filter` operates on Array. Adding explicit `filterArray` would be unnecessary.
---