From: John Resig Date: Tue, 5 Sep 2006 20:20:16 +0000 (+0000) Subject: Fixed bug with $.map() not showing in the docs. X-Git-Tag: 1.0.2~83 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=acf102237f9e26c1b864bf6e432f65040b477851;p=jquery.git Fixed bug with $.map() not showing in the docs. --- diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index feb71e419..5b2d74697 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1977,7 +1977,8 @@ jQuery.extend({ * @example $.map( [0,1,2], function(i){ * return [ i, i + 1 ]; * }); - * @result [0, 1, 1, 2, 2, 3] * + * @result [0, 1, 1, 2, 2, 3] + * * @name $.map * @type Array * @param Array array The Array to translate.