minor fixes

This commit is contained in:
Ilya Kantor 2019-11-30 09:31:19 +03:00
parent 6a52ee2cf5
commit d334cf8787
2 changed files with 2 additions and 32 deletions

View file

@ -279,7 +279,7 @@ What if we'd like to fix some arguments, but not the context `this`? For example
The native `bind` does not allow that. We can't just omit the context and jump to arguments.
Fortunately, a helper function `partial` for binding only arguments can be easily implemented.
Fortunately, a function `partial` for binding only arguments can be easily implemented.
Like this: