This commit is contained in:
Trent Mick 2010-08-06 11:17:45 -07:00 коммит произвёл Ryan Dahl
Родитель aaa1f451e6
Коммит e8c2453f6d
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -228,7 +228,7 @@
* Fix child process exit codes (Felix Geisendörfer)
* Allow callers to disable PHP/Rails style parameter mungeing in
* Allow callers to disable PHP/Rails style parameter munging in
querystring.stringify (Thomas Lee)
* Upgrade V8 to 2.2.6

Просмотреть файл

@ -2976,7 +2976,7 @@ Example:
// returns
'foo:bar;baz:bob'
By default, this function will perform PHP/Rails-style parameter mungeing for arrays and objects used as
By default, this function will perform PHP/Rails-style parameter munging for arrays and objects used as
values within `obj`.
Example:
@ -2988,7 +2988,7 @@ Example:
// returns
'foo%5Bbar%5D=baz'
If you wish to disable the array mungeing (e.g. when generating parameters for a Java servlet), you
If you wish to disable the array munging (e.g. when generating parameters for a Java servlet), you
can set the `munge` argument to `false`.
Example: