aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-21 04:15:49 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-21 04:39:53 -0700
commitd8cb94c75cfad1d1ffe23eaa9040655da56e6e4d (patch)
tree81d27684cd70ca7ffee031b982000f76df292b41 /activesupport/lib/active_support
parent21de164f8a3e501f9c66336e6e9f10e23daa43b3 (diff)
downloadrails-d8cb94c75cfad1d1ffe23eaa9040655da56e6e4d.tar.gz
rails-d8cb94c75cfad1d1ffe23eaa9040655da56e6e4d.tar.bz2
rails-d8cb94c75cfad1d1ffe23eaa9040655da56e6e4d.zip
Fix dangling Inflector reference
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/integer/inflections.rb2
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