From ffa41523a6790cb30edf86a63dc07b2d6b515c51 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Thu, 3 Nov 2016 12:29:26 -0700 Subject: [PATCH] fix a couple README typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1524de8..d524700 100644 --- a/README.md +++ b/README.md @@ -77,12 +77,12 @@ instance. ## createFunction(name, arity, constructor, arguments) → Function - * 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