diff options
| author | Florian Zeitz <florob@babelmonkeys.de> | 2014-05-12 22:44:21 +0200 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-13 17:24:07 -0700 |
| commit | df802a2754a5d536bbec264136a08d166d3bb81a (patch) | |
| tree | 18bc2c4a0fa00822ff6156570c432731a379b612 /src/libstd/unicode.rs | |
| parent | 8c54d5bf406fbfdbebd1a4553f430fca02b2c117 (diff) | |
| download | rust-df802a2754a5d536bbec264136a08d166d3bb81a.tar.gz rust-df802a2754a5d536bbec264136a08d166d3bb81a.zip | |
std: Rename str::Normalizations to str::Decompositions
The Normalizations iterator has been renamed to Decompositions. It does not currently include all forms of Unicode normalization, but only encompasses decompositions. If implemented recomposition would likely be a separate iterator which works on the result of this one. [breaking-change]
Diffstat (limited to 'src/libstd/unicode.rs')
| -rw-r--r-- | src/libstd/unicode.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/unicode.rs b/src/libstd/unicode.rs index d534b30221b..03c960e96ff 100644 --- a/src/libstd/unicode.rs +++ b/src/libstd/unicode.rs @@ -12,7 +12,7 @@ #![allow(missing_doc, non_uppercase_statics)] -pub mod decompose { +pub mod normalization { use option::{Some, None}; use slice::ImmutableVector; |
