diff --git a/index.html b/index.html index d23e03d23..8e30f6f23 100644 --- a/index.html +++ b/index.html @@ -592,7 +592,7 @@
- invoke_.invoke(list, methodName, [*arguments])
+ invoke_.invoke(list, methodName, *arguments)
Calls the method named by methodName on each value in the list.
Any extra arguments passed to invoke will be forwarded on to the
@@ -834,7 +834,7 @@
- without_.without(array, [*values])
+ without_.without(array, *values)
Returns a copy of the array with all instances of the values
removed.
@@ -1009,7 +1009,7 @@
- bind_.bind(function, object, [*arguments])
+ bind_.bind(function, object, *arguments)
Bind a function to an object, meaning that whenever
the function is called, the value of this will be the object.
@@ -1044,7 +1044,7 @@
- partial_.partial(function, [*arguments])
+ partial_.partial(function, *arguments)
Partially apply a function by filling in any number of its arguments,
without changing its dynamic this value. A close cousin
@@ -1074,7 +1074,7 @@
- delay_.delay(function, wait, [*arguments])
+ delay_.delay(function, wait, *arguments)
Much like setTimeout, invokes function after wait
milliseconds. If you pass the optional arguments, they will be
@@ -1087,7 +1087,7 @@
- defer_.defer(function, [*arguments])
+ defer_.defer(function, *arguments)
Defers invoking the function until the current call stack has cleared,
similar to using setTimeout with a delay of 0. Useful for performing