Fix _.partialRight doc typo. [ci skip]

Former-commit-id: 871aa8f8c89a226e89988995926f8a6946757321
This commit is contained in:
John-David Dalton
2013-01-20 12:21:57 -08:00
parent a457675ce1
commit 27f1e5e2f2
3 changed files with 102 additions and 3371 deletions

View File

@@ -550,7 +550,7 @@
/**
* Creates a function that, when called, invokes `func` with the `this` binding
* of `thisArg` and prepends any `partailArgs` to the arguments passed to the
* of `thisArg` and prepends any `partialArgs` to the arguments passed to the
* bound function.
*
* @private
@@ -3864,7 +3864,7 @@
* @example
*
* _.mixin({
* 'defaultsDeep': _.partailRight(_.merge, _.defaults)
* 'defaultsDeep': _.partialRight(_.merge, _.defaults)
* });
*
* var options = {