diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-06 13:03:59 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-06-06 13:03:59 -0700 |
commit | e79d47847a75d63a66a3ed2296271fd28d41f24c (patch) | |
tree | 79da4424ebd2f5faf7e6ea5467aefeab6c07824f /activesupport | |
parent | e2c49e6a59f1b969a526586a3dd4dfd9c6f12b10 (diff) | |
download | rails-e79d47847a75d63a66a3ed2296271fd28d41f24c.tar.gz rails-e79d47847a75d63a66a3ed2296271fd28d41f24c.tar.bz2 rails-e79d47847a75d63a66a3ed2296271fd28d41f24c.zip |
Qualify Inflector in rdoc examples also. [#356 state:resolved]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/inflector.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/inflector.rb b/activesupport/lib/active_support/inflector.rb index 9d549eaae1..47bd6e1767 100644 --- a/activesupport/lib/active_support/inflector.rb +++ b/activesupport/lib/active_support/inflector.rb @@ -15,7 +15,7 @@ module ActiveSupport # A singleton instance of this class is yielded by Inflector.inflections, which can then be used to specify additional # inflection rules. Examples: # - # Inflector.inflections do |inflect| + # ActiveSupport::Inflector.inflections do |inflect| # inflect.plural /^(ox)$/i, '\1\2en' # inflect.singular /^(ox)en/i, '\1' # @@ -97,7 +97,7 @@ module ActiveSupport # inflector rules. # # Example: - # Inflector.inflections do |inflect| + # ActiveSupport::Inflector.inflections do |inflect| # inflect.uncountable "rails" # end def inflections |