Fix dangling Inflector reference

This commit is contained in:
Jeremy Kemper
2009-03-21 04:15:49 -07:00
parent 21de164f8a
commit d8cb94c75c

View File

@@ -9,6 +9,6 @@ class Integer
# 1002.ordinalize # => "1002nd"
# 1003.ordinalize # => "1003rd"
def ordinalize
Inflector.ordinalize(self)
ActiveSupport::Inflector.ordinalize(self)
end
end