@@ -547,10 +547,10 @@ impl char {
547
547
}
548
548
}
549
549
550
- /// Returns `true` if this `char` satisfies the ' XID_Start' Unicode property, and false
550
+ /// Returns `true` if this `char` satisfies the ` XID_Start` Unicode property, and false
551
551
/// otherwise.
552
552
///
553
- /// ' XID_Start' is a Unicode Derived Property specified in
553
+ /// ` XID_Start` is a Unicode Derived Property specified in
554
554
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
555
555
/// mostly similar to `ID_Start` but modified for closure under `NFKx`.
556
556
#[ cfg_attr( bootstrap,
@@ -563,12 +563,12 @@ impl char {
563
563
derived_property:: XID_Start ( self )
564
564
}
565
565
566
- /// Returns `true` if this `char` satisfies the ' XID_Continue' Unicode property, and false
566
+ /// Returns `true` if this `char` satisfies the ` XID_Continue` Unicode property, and false
567
567
/// otherwise.
568
568
///
569
- /// ' XID_Continue' is a Unicode Derived Property specified in
569
+ /// ` XID_Continue` is a Unicode Derived Property specified in
570
570
/// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications),
571
- /// mostly similar to ' ID_Continue' but modified for closure under NFKx.
571
+ /// mostly similar to ` ID_Continue` but modified for closure under NFKx.
572
572
#[ cfg_attr( bootstrap,
573
573
unstable( feature = "rustc_private" ,
574
574
reason = "mainly needed for compiler internals" ,
@@ -666,7 +666,7 @@ impl char {
666
666
/// Returns `true` if this `char` is alphanumeric.
667
667
///
668
668
/// 'Alphanumeric'-ness is defined in terms of the Unicode General Categories
669
- /// 'Nd', 'Nl', 'No' and the Derived Core Property ' Alphabetic' .
669
+ /// `Nd`, `Nl`, `No` and the Derived Core Property ` Alphabetic` .
670
670
///
671
671
/// # Examples
672
672
///
@@ -720,7 +720,7 @@ impl char {
720
720
/// Returns `true` if this `char` is numeric.
721
721
///
722
722
/// 'Numeric'-ness is defined in terms of the Unicode General Categories
723
- /// 'Nd', 'Nl', 'No' .
723
+ /// `Nd`, `Nl`, `No` .
724
724
///
725
725
/// # Examples
726
726
///
0 commit comments