diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-31 22:22:05 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-31 22:22:05 +0800 |
commit | b20e972bec52781de806fb050e72d44b729c6541 (patch) | |
tree | 0d8114da1536ae5ec6c2c606a30e1ae4c2cb311f /lib/event.js | |
parent | a8a2e3231c2ced50989dc5d23659f7482a667f69 (diff) | |
download | go-tangerine-b20e972bec52781de806fb050e72d44b729c6541.tar go-tangerine-b20e972bec52781de806fb050e72d44b729c6541.tar.gz go-tangerine-b20e972bec52781de806fb050e72d44b729c6541.tar.bz2 go-tangerine-b20e972bec52781de806fb050e72d44b729c6541.tar.lz go-tangerine-b20e972bec52781de806fb050e72d44b729c6541.tar.xz go-tangerine-b20e972bec52781de806fb050e72d44b729c6541.tar.zst go-tangerine-b20e972bec52781de806fb050e72d44b729c6541.zip |
few methods moved to utils
Diffstat (limited to 'lib/event.js')
-rw-r--r-- | lib/event.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/event.js b/lib/event.js index efb85b1fc..43ea96d12 100644 --- a/lib/event.js +++ b/lib/event.js @@ -29,7 +29,7 @@ var inputWithName = function (inputs, name) { }); if (index === -1) { - console.error('indexed paray with name ' + name + ' not found'); + console.error('indexed param with name ' + name + ' not found'); return undefined; } return inputs[index]; |