diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-21 04:15:49 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-21 04:39:53 -0700 |
commit | d8cb94c75cfad1d1ffe23eaa9040655da56e6e4d (patch) | |
tree | 81d27684cd70ca7ffee031b982000f76df292b41 /activesupport/lib | |
parent | 21de164f8a3e501f9c66336e6e9f10e23daa43b3 (diff) | |
download | rails-d8cb94c75cfad1d1ffe23eaa9040655da56e6e4d.tar.gz rails-d8cb94c75cfad1d1ffe23eaa9040655da56e6e4d.tar.bz2 rails-d8cb94c75cfad1d1ffe23eaa9040655da56e6e4d.zip |
Fix dangling Inflector reference
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/integer/inflections.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/integer/inflections.rb b/activesupport/lib/active_support/core_ext/integer/inflections.rb index 7a8c081b73..e81e7af436 100644 --- a/activesupport/lib/active_support/core_ext/integer/inflections.rb +++ b/activesupport/lib/active_support/core_ext/integer/inflections.rb @@ -9,6 +9,6 @@ class Integer # 1002.ordinalize # => "1002nd" # 1003.ordinalize # => "1003rd" def ordinalize - Inflector.ordinalize(self) + ActiveSupport::Inflector.ordinalize(self) end end |