diff options
author | Rob Loach <robloach@gmail.com> | 2015-01-02 18:28:11 -0500 |
---|---|---|
committer | Rob Loach <robloach@gmail.com> | 2015-01-02 18:28:11 -0500 |
commit | cbdbdee2311d63b65600435f0014bedd79e5b11e (patch) | |
tree | 7e9582e5934c8907ee97ee777ffe836e7eadf74e /jquery.once.js | |
parent | 16a3c412956ee77d946d1c8165424063d21ba767 (diff) | |
download | jquery-once-cbdbdee2311d63b65600435f0014bedd79e5b11e.zip jquery-once-cbdbdee2311d63b65600435f0014bedd79e5b11e.tar.gz jquery-once-cbdbdee2311d63b65600435f0014bedd79e5b11e.tar.bz2 |
Fix spelling mistake in inline comments
This was found by @theodoreb.
Diffstat (limited to 'jquery.once.js')
-rw-r--r-- | jquery.once.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery.once.js b/jquery.once.js index f563da8..c333d31 100644 --- a/jquery.once.js +++ b/jquery.once.js @@ -91,7 +91,7 @@ // ID parameter is not provided. var name = "jquery-once-" + checkId(id); - // Filter the elements by whi*ch do not have the data yet. + // Filter the elements by which do not have the data yet. return this.filter(function() { return $(this).data(name) !== true; }).data(name, true); |