We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 906acff commit 8d257c1Copy full SHA for 8d257c1
1 file changed
crates/psu-packer/src/main.rs
@@ -53,7 +53,7 @@ struct ConfigFile {
53
54
fn check_name(name: &str) -> bool {
55
for c in name.chars() {
56
- if !matches!(c, 'a'..'z'|'A'..'Z'|'0'..'9'|'_'|'-'|' ') {
+ if !matches!(c, 'a'..='z'|'A'..='Z'|'0'..='9'|'_'|'-'|' ') {
57
return false
58
}
59
0 commit comments