Skip to content

Commit

Permalink
Fixed PDoc for toQueryString()
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Homyakov committed Oct 3, 2012
1 parent d017062 commit 7f9dc59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prototype/lang/object.js
Expand Up @@ -244,7 +244,7 @@
* ##### Examples * ##### Examples
* *
* Object.toQueryString({ action: 'ship', order_id: 123, fees: ['f1', 'f2'], 'label': 'a demo' }) * Object.toQueryString({ action: 'ship', order_id: 123, fees: ['f1', 'f2'], 'label': 'a demo' })
* // -> 'action=ship&order_id=123&fees=f1&fees=f2&label=a%20demo' * // -> 'action=ship&order_id=123&fees=f1&fees=f2&label=a+demo'
**/ **/
function toQueryString(object) { function toQueryString(object) {
return $H(object).toQueryString(); return $H(object).toQueryString();
Expand Down

0 comments on commit 7f9dc59

Please sign in to comment.