Fixed bug with $.map() not showing in the docs.
authorJohn Resig <jeresig@gmail.com>
Tue, 5 Sep 2006 20:20:16 +0000 (20:20 +0000)
committerJohn Resig <jeresig@gmail.com>
Tue, 5 Sep 2006 20:20:16 +0000 (20:20 +0000)
src/jquery/jquery.js

index feb71e4..5b2d746 100644 (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]\r   *
+        * @result [0, 1, 1, 2, 2, 3]
+        *
         * @name $.map
         * @type Array
         * @param Array array The Array to translate.