diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-12-13 19:04:36 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-12-13 19:04:36 +0000 |
commit | 3e165ae5ab080236eb0df35c691d6f3127c6499e (patch) | |
tree | 212bb02a43d292d8cecbf32179af0ef206d860fa /src | |
parent | ed37ca66e5f79b4250f38cbd7a7f809ebfc15a20 (diff) | |
download | jquery-3e165ae5ab080236eb0df35c691d6f3127c6499e.tar.gz jquery-3e165ae5ab080236eb0df35c691d6f3127c6499e.zip |
Fixed docs for $.ajax' processData option
Diffstat (limited to 'src')
-rw-r--r-- | src/ajax/ajax.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index fa48afab5..51457d0a7 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -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. |