aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/multibyte.rb
diff options
context:
space:
mode:
authorManfred Stienstra <manfred@fngtps.com>2008-10-06 19:42:51 +0200
committerPratik Naik <pratiknaik@gmail.com>2008-10-06 19:04:45 +0100
commitefb9ef65ccd1e047605887fc76eab41b9add45bd (patch)
treea4b491e43a5ce0573508a9196caff46d31ded645 /activesupport/lib/active_support/multibyte.rb
parent5bc91b059209f4d659346ace31c4014be789e0be (diff)
downloadrails-efb9ef65ccd1e047605887fc76eab41b9add45bd.tar.gz
rails-efb9ef65ccd1e047605887fc76eab41b9add45bd.tar.bz2
rails-efb9ef65ccd1e047605887fc76eab41b9add45bd.zip
Fix a typo in ActiveSupport::Multibyte::NORMALIZATION_FORMS. [#1179 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'activesupport/lib/active_support/multibyte.rb')
-rw-r--r--activesupport/lib/active_support/multibyte.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/multibyte.rb b/activesupport/lib/active_support/multibyte.rb
index 018aafe607..65a96af49a 100644
--- a/activesupport/lib/active_support/multibyte.rb
+++ b/activesupport/lib/active_support/multibyte.rb
@@ -8,13 +8,13 @@ module ActiveSupport #:nodoc:
module Multibyte
# A list of all available normalization forms. See http://www.unicode.org/reports/tr15/tr15-29.html for more
# information about normalization.
- NORMALIZATIONS_FORMS = [:c, :kc, :d, :kd]
+ NORMALIZATION_FORMS = [:c, :kc, :d, :kd]
# The Unicode version that is supported by the implementation
UNICODE_VERSION = '5.1.0'
# The default normalization used for operations that require normalization. It can be set to any of the
- # normalizations in NORMALIZATIONS_FORMS.
+ # normalizations in NORMALIZATION_FORMS.
#
# Example:
# ActiveSupport::Multibyte.default_normalization_form = :c