@@ -519,35 +519,35 @@ extension Unicode.Scalar.Properties {
519
519
return _hasBinaryProperty ( __swift_stdlib_UCHAR_CASE_IGNORABLE)
520
520
}
521
521
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 .
524
524
///
525
525
/// This property corresponds to the `Changes_When_Lowercased` property in the
526
526
/// [Unicode Standard](http://www.unicode.org/versions/latest/).
527
527
public var changesWhenLowercased : Bool {
528
528
return _hasBinaryProperty ( __swift_stdlib_UCHAR_CHANGES_WHEN_LOWERCASED)
529
529
}
530
530
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 .
533
533
///
534
534
/// This property corresponds to the `Changes_When_Uppercased` property in the
535
535
/// [Unicode Standard](http://www.unicode.org/versions/latest/).
536
536
public var changesWhenUppercased : Bool {
537
537
return _hasBinaryProperty ( __swift_stdlib_UCHAR_CHANGES_WHEN_UPPERCASED)
538
538
}
539
539
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 .
542
542
///
543
543
/// This property corresponds to the `Changes_When_Titlecased` property in the
544
544
/// [Unicode Standard](http://www.unicode.org/versions/latest/).
545
545
public var changesWhenTitlecased : Bool {
546
546
return _hasBinaryProperty ( __swift_stdlib_UCHAR_CHANGES_WHEN_TITLECASED)
547
547
}
548
548
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 .
551
551
///
552
552
/// This property corresponds to the `Changes_When_Casefolded` property in the
553
553
/// [Unicode Standard](http://www.unicode.org/versions/latest/).
0 commit comments