Skip to content

Commit 62a4548

Browse files
committed
Migrated from .. to ... to respond to upstream changes.
1 parent 629ba58 commit 62a4548

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@ fn param_from_str(raw: &str, iter: &mut Enumerate<Chars>, mut start: uint) -> Op
317317
//
318318
fn is_restricted_name_first_char(c: char) -> bool {
319319
match c {
320-
'a'..'z' |
321-
'0'..'9' => true,
320+
'a'...'z' |
321+
'0'...'9' => true,
322322
_ => false
323323
}
324324
}

0 commit comments

Comments
 (0)