diff options
author | Xavier Noria <fxn@hashref.com> | 2009-06-13 15:40:21 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-06-13 15:40:21 +0200 |
commit | 74e87308ed2278c8ced2cbea5fb0c0e845d2735f (patch) | |
tree | ce2ed4422be98aa8e07743ef1f867f937dab812e /railties/guides | |
parent | 8ac17e6d9bcb89230919bd3cb9e2f52303a07612 (diff) | |
download | rails-74e87308ed2278c8ced2cbea5fb0c0e845d2735f.tar.gz rails-74e87308ed2278c8ced2cbea5fb0c0e845d2735f.tar.bz2 rails-74e87308ed2278c8ced2cbea5fb0c0e845d2735f.zip |
AS guide: typo
Diffstat (limited to 'railties/guides')
-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 aeaebe140e..8641eca3eb 100644 --- a/railties/guides/source/active_support_overview.textile +++ b/railties/guides/source/active_support_overview.textile @@ -112,7 +112,7 @@ The return value of +to_param+ should *not* be escaped: "Tom & Jerry".to_param # => "Tom & Jerry" </ruby> -Several classes in Rails overwrite these method. +Several classes in Rails overwrite this method. For example +nil+, +true+, and +false+ return themselves. +Array#to_param+ calls +to_param+ on the elements and joins the result with "/": |