X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fjquery%2Fjquery.js;h=7a59a4ea6db6a25d763b6b3b3e3fae71ae56b403;hb=e7669f64d88612884df27c5744558191f8e6c8b1;hp=1535fb5d4129ec07bc7ad16ffd480cc53a485350;hpb=cb53fc02b68ca267f9eddd8fd4f5d92ef08ae022;p=jquery.git diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 1535fb5..7a59a4e 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1661,9 +1661,9 @@ jQuery.extend({ * t( "Attribute Exists", "*[@title]", ["google"] ); * t( "Attribute Exists", "[@title]", ["google"] ); * - * t( "Non-existing part of attribute [@name*=bla]", "[@name*=bla]", [] ); - * t( "Non-existing start of attribute [@name^=bla]", "[@name^=bla]", [] ); - * t( "Non-existing end of attribute [@name$=bla]", "[@name$=bla]", [] ); + * t( "Non-existing part of attribute", "[@name*=bla]", [] ); + * t( "Non-existing start of attribute", "[@name^=bla]", [] ); + * t( "Non-existing end of attribute", "[@name$=bla]", [] ); * * t( "Attribute Equals", "a[@rel='bookmark']", ["simon1"] ); * t( "Attribute Equals", 'a[@rel="bookmark"]', ["simon1"] );