Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed syntax error [#1894 state:committed]
  • Loading branch information
dhh committed Feb 6, 2009
1 parent 3c006d4 commit 3056059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/inflector.rb
Expand Up @@ -277,7 +277,7 @@ def transliterate(string)

# The iconv transliteration code doesn't function correctly
# on some platforms, but it's very fast where it does function.
elsif "foo" != (Inflector.transliterate("föö") rescue nil)
if "foo" != (Inflector.transliterate("föö") rescue nil)
undef_method :transliterate
def transliterate(string)
string.mb_chars.normalize(:kd). # Decompose accented characters
Expand Down

0 comments on commit 3056059

Please sign in to comment.