diff options
author | Xavier Noria <fxn@hashref.com> | 2010-02-28 22:32:00 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-02-28 22:32:00 +0100 |
commit | 947511e50e7c60d8bed581c8f20f4ebbc72a4d14 (patch) | |
tree | aff168a5fd2e24d7cd37fe1638a1c96cdbd7b633 /railties | |
parent | 68dd44cc62062c8f3c82dde678bf99e8f2245bb5 (diff) | |
download | rails-947511e50e7c60d8bed581c8f20f4ebbc72a4d14.tar.gz rails-947511e50e7c60d8bed581c8f20f4ebbc72a4d14.tar.bz2 rails-947511e50e7c60d8bed581c8f20f4ebbc72a4d14.zip |
AS guide: shortens a sentence
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/active_support_core_extensions.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/active_support_core_extensions.textile b/railties/guides/source/active_support_core_extensions.textile index b3e4bc778a..23879827e2 100644 --- a/railties/guides/source/active_support_core_extensions.textile +++ b/railties/guides/source/active_support_core_extensions.textile @@ -1261,7 +1261,7 @@ The method +pluralize+ returns the plural of its receiver: "equipment".pluralize # => "equipment" </ruby> -As the previous example shows, Active Support knows some irregular plurals and a few uncountable nouns. Builtin rules can be extended in +config/initializers/inflections.rb+. That file is generated by the +rails+ command and has instructions in comments. +As the previous example shows, Active Support knows some irregular plurals and uncountable nouns. Builtin rules can be extended in +config/initializers/inflections.rb+. That file is generated by the +rails+ command and has instructions in comments. NOTE: Defined in +active_support/core_ext/string/inflections.rb+. |