@@ -133,22 +133,22 @@ pub trait UnicodeNormalization<I: Iterator<Item = char>> {
133133impl < ' a > UnicodeNormalization < Chars < ' a > > for & ' a str {
134134 #[ inline]
135135 fn nfd ( self ) -> Decompositions < Chars < ' a > > {
136- decompose :: new_canonical ( self . chars ( ) )
136+ Decompositions :: new_canonical ( self . chars ( ) )
137137 }
138138
139139 #[ inline]
140140 fn nfkd ( self ) -> Decompositions < Chars < ' a > > {
141- decompose :: new_compatible ( self . chars ( ) )
141+ Decompositions :: new_compatible ( self . chars ( ) )
142142 }
143143
144144 #[ inline]
145145 fn nfc ( self ) -> Recompositions < Chars < ' a > > {
146- recompose :: new_canonical ( self . chars ( ) )
146+ Recompositions :: new_canonical ( self . chars ( ) )
147147 }
148148
149149 #[ inline]
150150 fn nfkc ( self ) -> Recompositions < Chars < ' a > > {
151- recompose :: new_compatible ( self . chars ( ) )
151+ Recompositions :: new_compatible ( self . chars ( ) )
152152 }
153153
154154 #[ inline]
@@ -165,22 +165,22 @@ impl<'a> UnicodeNormalization<Chars<'a>> for &'a str {
165165impl UnicodeNormalization < option:: IntoIter < char > > for char {
166166 #[ inline]
167167 fn nfd ( self ) -> Decompositions < option:: IntoIter < char > > {
168- decompose :: new_canonical ( Some ( self ) . into_iter ( ) )
168+ Decompositions :: new_canonical ( Some ( self ) . into_iter ( ) )
169169 }
170170
171171 #[ inline]
172172 fn nfkd ( self ) -> Decompositions < option:: IntoIter < char > > {
173- decompose :: new_compatible ( Some ( self ) . into_iter ( ) )
173+ Decompositions :: new_compatible ( Some ( self ) . into_iter ( ) )
174174 }
175175
176176 #[ inline]
177177 fn nfc ( self ) -> Recompositions < option:: IntoIter < char > > {
178- recompose :: new_canonical ( Some ( self ) . into_iter ( ) )
178+ Recompositions :: new_canonical ( Some ( self ) . into_iter ( ) )
179179 }
180180
181181 #[ inline]
182182 fn nfkc ( self ) -> Recompositions < option:: IntoIter < char > > {
183- recompose :: new_compatible ( Some ( self ) . into_iter ( ) )
183+ Recompositions :: new_compatible ( Some ( self ) . into_iter ( ) )
184184 }
185185
186186 #[ inline]
@@ -197,22 +197,22 @@ impl UnicodeNormalization<option::IntoIter<char>> for char {
197197impl < I : Iterator < Item = char > > UnicodeNormalization < I > for I {
198198 #[ inline]
199199 fn nfd ( self ) -> Decompositions < I > {
200- decompose :: new_canonical ( self )
200+ Decompositions :: new_canonical ( self )
201201 }
202202
203203 #[ inline]
204204 fn nfkd ( self ) -> Decompositions < I > {
205- decompose :: new_compatible ( self )
205+ Decompositions :: new_compatible ( self )
206206 }
207207
208208 #[ inline]
209209 fn nfc ( self ) -> Recompositions < I > {
210- recompose :: new_canonical ( self )
210+ Recompositions :: new_canonical ( self )
211211 }
212212
213213 #[ inline]
214214 fn nfkc ( self ) -> Recompositions < I > {
215- recompose :: new_compatible ( self )
215+ Recompositions :: new_compatible ( self )
216216 }
217217
218218 #[ inline]
0 commit comments