We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 45c0f27 + 06a4562 commit 040965cCopy full SHA for 040965c
file/split.rs
@@ -68,7 +68,7 @@ impl Suffix {
68
}
69
70
fn inc_char(ch: char) -> char {
71
- debug_assert!('a' <= ch && ch < 'z');
+ debug_assert!(('a'..='y').contains(&ch));
72
((ch as u8) + 1) as char
73
74
0 commit comments