Merge pull request #1564 from lumosmind/patch-23

wrapper instead of helper
This commit is contained in:
Ilya Kantor 2019-11-02 21:37:56 +03:00 committed by GitHub
commit 7f5fced5b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 wrapper function `partial` for binding only arguments can be easily implemented.
Like this: