From 588bbfd1b4e68172fc3d205776e43664da46d8c0 Mon Sep 17 00:00:00 2001 From: duerst Date: Sun, 19 Oct 2014 01:10:12 +0000 Subject: lib/unicode_normalize.rb: Changing module name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48013 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/unicode_normalize.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/unicode_normalize.rb b/lib/unicode_normalize.rb index 7dec2f723d..d8255377fd 100644 --- a/lib/unicode_normalize.rb +++ b/lib/unicode_normalize.rb @@ -6,7 +6,7 @@ require 'unicode_normalize/normalize.rb' class String def normalize(form = :nfc) - Normalize.normalize(self, form) + UnicodeNormalize.normalize(self, form) end def normalize!(form = :nfc) @@ -14,7 +14,7 @@ class String end def normalized?(form = :nfc) - Normalize.normalized?(self, form) + UnicodeNormalize.normalized?(self, form) end end -- cgit v1.2.3