diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-10-27 15:15:44 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-10-27 15:15:44 +0000 |
commit | fc351ba2791e63a31fc16a9478e007d88ee9bb18 (patch) | |
tree | 3caa03648f1bce2dbb69883666ed3fbc1e5e1145 /src/jquery | |
parent | 4b3b2c1f42d6df46377c05b90bf9bcc664356d0e (diff) | |
download | jquery-fc351ba2791e63a31fc16a9478e007d88ee9bb18.tar.gz jquery-fc351ba2791e63a31fc16a9478e007d88ee9bb18.zip |
Fixed previous() in docs
Diffstat (limited to 'src/jquery')
-rw-r--r-- | src/jquery/jquery.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 03db89cb1..76f0f0e02 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -3096,7 +3096,7 @@ jQuery.macros = { * * It only returns the immediately previous sibling, not all previous siblings. * - * @example $("p").previous(".selected") + * @example $("p").prev(".selected") * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p> * @result [ <div><span>Hello</span></div> ] * |