aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2006-09-05 20:20:16 +0000
committerJohn Resig <jeresig@gmail.com>2006-09-05 20:20:16 +0000
commitacf102237f9e26c1b864bf6e432f65040b477851 (patch)
tree786729d91bf23c2afd3c62531f57c9878eb86849 /src
parentfd4fc0bcdd4d2e65d48e99aa40af79da72225bea (diff)
downloadjquery-acf102237f9e26c1b864bf6e432f65040b477851.tar.gz
jquery-acf102237f9e26c1b864bf6e432f65040b477851.zip
Fixed bug with $.map() not showing in the docs.
Diffstat (limited to 'src')
-rw-r--r--src/jquery/jquery.js3
1 files changed, 2 insertions, 1 deletions
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.