8000 Avoid saying "non-standard" in a comment. · unicode-rs/unicode-normalization@5aca91b · GitHub
[go: up one dir, main page]

Skip to content

Commit 5aca91b

Browse files
committed
Avoid saying "non-standard" in a comment.
The standardized variations sequences are standardized, so don't imply otherwise.
1 parent 41dc717 commit 5aca91b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/lib.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,10 @@ pub trait UnicodeNormalization<I: Iterator<Item = char>> {
112112
/// (compatibility decomposition followed by canonical composition).
113113
fn nfkc(self) -> Recompositions<I>;
114114

115-
/// A non-standard transformation which replaces select codepoints with
116-
/// normal forms using Standardized Variation Sequences. These are
117-
/// different than the standard decompositions, but they better preserve
115+
/// A transformation which replaces codepoints with normal forms using
116+
/// Standardized Variation Sequences. This is not part of the canonical
117+
/// or compatibility decomposition algorithms, but performing it before
118+
/// those algorithms produces normalized output which better preserves
118119
/// the intent of the original text.
119120
///
120121
/// Note that many systems today ignore variation selectors, so these

0 commit comments

Comments
 (0)
0