diff options
author | Xavier Noria <fxn@euler.local> | 2009-09-09 01:25:14 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-09-12 01:58:51 +0200 |
commit | 5cc55dda3ec333368c3b0b9f6bca73490258b576 (patch) | |
tree | 5ad94660364717b8895e4498d77f4f8b7d563466 /railties | |
parent | e433a391d611256ccefd0c10046aa432de7c0b90 (diff) | |
download | rails-5cc55dda3ec333368c3b0b9f6bca73490258b576.tar.gz rails-5cc55dda3ec333368c3b0b9f6bca73490258b576.tar.bz2 rails-5cc55dda3ec333368c3b0b9f6bca73490258b576.zip |
AS guide: corrects a typo
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/active_support_overview.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/active_support_overview.textile b/railties/guides/source/active_support_overview.textile index 7adaafceff..be787b6af2 100644 --- a/railties/guides/source/active_support_overview.textile +++ b/railties/guides/source/active_support_overview.textile @@ -257,7 +257,7 @@ account.to_query('company[name]') so its output is ready to be used in a query string. -Arrays return the result of applying +to_query+ to each element with <tt>_key_[]</tt> as key, and join the result with "/": +Arrays return the result of applying +to_query+ to each element with <tt>_key_[]</tt> as key, and join the result with "&": <ruby> [3.4, -45.6].to_query('sample') |