diff options
author | Xavier Noria <fxn@hashref.com> | 2009-08-25 01:13:31 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-08-30 20:51:32 +0200 |
commit | 0af0a3db771440fe01b3e8df6e550a759ac87569 (patch) | |
tree | 0ccfb28bdff62cc81951902b97aa2abfaa717d6a /railties/guides/source/active_support_overview.textile | |
parent | ea6cc2800fa82ac643e5028f285c84427b901829 (diff) | |
download | rails-0af0a3db771440fe01b3e8df6e550a759ac87569.tar.gz rails-0af0a3db771440fe01b3e8df6e550a759ac87569.tar.bz2 rails-0af0a3db771440fe01b3e8df6e550a759ac87569.zip |
AS guide: reorders an example
Diffstat (limited to 'railties/guides/source/active_support_overview.textile')
-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 37491fa1a5..8e4391cdd0 100644 --- a/railties/guides/source/active_support_overview.textile +++ b/railties/guides/source/active_support_overview.textile @@ -825,8 +825,8 @@ The class method +Array.wrap+ behaves like the function +Array()+ except that it Array.wrap(:foo => :bar) # => [{:foo => :bar}] Array(:foo => :bar) # => [[:foo, :bar]] -Array("foo\nbar") # => ["foo\n", "bar"], in Ruby 1.8 Array.wrap("foo\nbar") # => ["foo\nbar"] +Array("foo\nbar") # => ["foo\n", "bar"], in Ruby 1.8 </ruby> h4. Grouping |