Skip to content

Commit

Permalink
fix a couple README typos
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Nov 3, 2016
1 parent 4cefcde commit ffa4152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ instance.

## createFunction(name, arity, constructor, arguments) → Function<Type>

* name - `String` - the `name` to set for the created function, must be a string (even containing spaces, unicode, emoji, and otherwise invalid JS identifiers)
* name - `String` - the `name` to set for the created function, must be a string (even containing spaces, unicode, emoji, or otherwise invalid JS identifier characters)
* arity - `Number` - the `length` to set for the created function, must be a positive integer
* constructor - `Function` - the class constructor to use invoke on the created instance, and inherit from the `prototype` of
* arguments - `Array` - array of values to invoke `constructor` with

All arguemnts are optional. You must specify the `invoke` function to execute on
All arguments are optional. You must specify the `invoke` function to execute on
the created function instance.

``` js
Expand Down

0 comments on commit ffa4152

Please sign in to comment.