File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -2500,7 +2500,8 @@ impl u8 {
2500
2500
2501
2501
/// Checks if the value is an ASCII alphanumeric character:
2502
2502
///
2503
- /// - U+0041 'A' ... U+005A 'Z', U+0061 'a' ... U+007A 'z', or
2503
+ /// - U+0041 'A' ... U+005A 'Z', or
2504
+ /// - U+0061 'a' ... U+007A 'z', or
2504
2505
/// - U+0030 '0' ... U+0039 '9'.
2505
2506
///
2506
2507
/// # Examples
@@ -2574,7 +2575,8 @@ impl u8 {
2574
2575
2575
2576
/// Checks if the value is an ASCII hexadecimal digit:
2576
2577
///
2577
- /// - U+0030 '0' ... U+0039 '9', U+0041 'A' ... U+0046 'F', or
2578
+ /// - U+0030 '0' ... U+0039 '9', or
2579
+ /// - U+0041 'A' ... U+0046 'F', or
2578
2580
/// - U+0061 'a' ... U+0066 'f'.
2579
2581
///
2580
2582
/// # Examples
Original file line number Diff line number Diff line change @@ -1176,7 +1176,8 @@ impl char {
1176
1176
1177
1177
/// Checks if the value is an ASCII alphanumeric character:
1178
1178
///
1179
- /// - U+0041 'A' ... U+005A 'Z', U+0061 'a' ... U+007A 'z', or
1179
+ /// - U+0041 'A' ... U+005A 'Z', or
1180
+ /// - U+0061 'a' ... U+007A 'z', or
1180
1181
/// - U+0030 '0' ... U+0039 '9'.
1181
1182
///
1182
1183
/// # Examples
@@ -1242,7 +1243,8 @@ impl char {
1242
1243
1243
1244
/// Checks if the value is an ASCII hexadecimal digit:
1244
1245
///
1245
- /// - U+0030 '0' ... U+0039 '9', U+0041 'A' ... U+0046 'F', or
1246
+ /// - U+0030 '0' ... U+0039 '9', or
1247
+ /// - U+0041 'A' ... U+0046 'F', or
1246
1248
/// - U+0061 'a' ... U+0066 'f'.
1247
1249
///
1248
1250
/// # Examples
You can’t perform that action at this time.
0 commit comments