From acf102237f9e26c1b864bf6e432f65040b477851 Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 5 Sep 2006 20:20:16 +0000 Subject: [PATCH] Fixed bug with $.map() not showing in the docs. --- src/jquery/jquery.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index feb71e41..5b2d7469 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.