Fixed docs for $.ajax' processData option
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Wed, 13 Dec 2006 19:04:36 +0000 (19:04 +0000)
committerJörn Zaefferer <joern.zaefferer@gmail.com>
Wed, 13 Dec 2006 19:04:36 +0000 (19:04 +0000)
src/ajax/ajax.js

index fa48afa..51457d0 100644 (file)
@@ -502,10 +502,10 @@ jQuery.extend({
         * (String) contentType - When sending data to the server, use this content-type,
         * default is "application/x-www-form-urlencoded", which is fine for most cases.
         *
-        * (Boolean) processData - By default, data passed in as an object other as string
-        * will be processed and transformed into a query string, fitting to the default
-        * content-type "application/x-www-form-urlencoded". If you want to send DOMDocuments,
-        * set this option to false.
+        * (Boolean) processData - By default, data passed in to the data option as an object
+        * other as string will be processed and transformed into a query string, fitting to
+        * the default content-type "application/x-www-form-urlencoded". If you want to send
+        * DOMDocuments, set this option to false.
         *
         * (Boolean) async - By default, all requests are send asynchronous (set to true).
         * If you need synchronous requests, set this option to false.