Fixed bug with $.map() not showing in the docs.

This commit is contained in:
John Resig 2006-09-05 20:20:16 +00:00
parent fd4fc0bcdd
commit acf102237f

View file

@ -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.