Skip to content

Commit 5352545

Browse files
committed
Apply review feedback
1 parent f99109c commit 5352545

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

stdlib/public/core/UnicodeScalarProperties.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -519,35 +519,35 @@ extension Unicode.Scalar.Properties {
519519
return _hasBinaryProperty(__swift_stdlib_UCHAR_CASE_IGNORABLE)
520520
}
521521

522-
/// A Boolean property indicating whether the scalar's `lowercaseMapping`
523-
/// differs from the NFD normalized form of the scalar itself.
522+
/// A Boolean property indicating whether the scalar's normalized form differs
523+
/// from the `lowercaseMapping` of each constituent scalar.
524524
///
525525
/// This property corresponds to the `Changes_When_Lowercased` property in the
526526
/// [Unicode Standard](http://www.unicode.org/versions/latest/).
527527
public var changesWhenLowercased: Bool {
528528
return _hasBinaryProperty(__swift_stdlib_UCHAR_CHANGES_WHEN_LOWERCASED)
529529
}
530530

531-
/// A Boolean property indicating whether the scalar's `uppercaseMapping`
532-
/// differs from the NFD normalized form of the scalar itself.
531+
/// A Boolean property indicating whether the scalar's normalized form differs
532+
/// from the `uppercaseMapping` of each constituent scalar.
533533
///
534534
/// This property corresponds to the `Changes_When_Uppercased` property in the
535535
/// [Unicode Standard](http://www.unicode.org/versions/latest/).
536536
public var changesWhenUppercased: Bool {
537537
return _hasBinaryProperty(__swift_stdlib_UCHAR_CHANGES_WHEN_UPPERCASED)
538538
}
539539

540-
/// A Boolean property indicating whether the scalar's `titlecaseMapping`
541-
/// differs from the NFD normalized form of the scalar itself.
540+
/// A Boolean property indicating whether the scalar's normalized form differs
541+
/// from the `titlecaseMapping` of each constituent scalar.
542542
///
543543
/// This property corresponds to the `Changes_When_Titlecased` property in the
544544
/// [Unicode Standard](http://www.unicode.org/versions/latest/).
545545
public var changesWhenTitlecased: Bool {
546546
return _hasBinaryProperty(__swift_stdlib_UCHAR_CHANGES_WHEN_TITLECASED)
547547
}
548548

549-
/// A Boolean property indicating whether the scalar is one that is not
550-
/// identical to its case-fold mapping.
549+
/// A Boolean property indicating whether the scalar's normalized form differs
550+
/// from the case-fold mapping of each constituent scalar.
551551
///
552552
/// This property corresponds to the `Changes_When_Casefolded` property in the
553553
/// [Unicode Standard](http://www.unicode.org/versions/latest/).

0 commit comments

Comments
 (0)