summaryrefslogtreecommitdiffstats
path: root/jquery.once.js
diff options
context:
space:
mode:
authorRob Loach <robloach@gmail.com>2015-01-02 18:28:11 -0500
committerRob Loach <robloach@gmail.com>2015-01-02 18:28:11 -0500
commitcbdbdee2311d63b65600435f0014bedd79e5b11e (patch)
tree7e9582e5934c8907ee97ee777ffe836e7eadf74e /jquery.once.js
parent16a3c412956ee77d946d1c8165424063d21ba767 (diff)
downloadjquery-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.js2
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);