git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fcc99cd
)
Fix for typo in toggleClass docs
author
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Wed, 15 Nov 2006 10:07:22 +0000
(10:07 +0000)
committer
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Wed, 15 Nov 2006 10:07:22 +0000
(10:07 +0000)
src/jquery/jquery.js
patch
|
blob
|
history
diff --git
a/src/jquery/jquery.js
b/src/jquery/jquery.js
index
9f6fbd0
..
53ffc16
100644
(file)
--- a/
src/jquery/jquery.js
+++ b/
src/jquery/jquery.js
@@
-3318,8
+3318,8
@@
jQuery.macros = {
},
/**
- * Adds the specified class if it is present, removes it if it is
- * not present.
+ * Adds the specified class if it is not present, removes it if it is
+ * present.
*
* @example $("p").toggleClass("selected")
* @before <p>Hello</p><p class="selected">Hello Again</p>