aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-08-25 01:13:31 +0200
committerXavier Noria <fxn@hashref.com>2009-08-30 20:51:32 +0200
commit0af0a3db771440fe01b3e8df6e550a759ac87569 (patch)
tree0ccfb28bdff62cc81951902b97aa2abfaa717d6a /railties
parentea6cc2800fa82ac643e5028f285c84427b901829 (diff)
downloadrails-0af0a3db771440fe01b3e8df6e550a759ac87569.tar.gz
rails-0af0a3db771440fe01b3e8df6e550a759ac87569.tar.bz2
rails-0af0a3db771440fe01b3e8df6e550a759ac87569.zip
AS guide: reorders an example
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/active_support_overview.textile2
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