Skip to content

Commit 020a8ae

Browse files
committed
Resolve unnecessary_semicolon pedantic clippy lint
warning: unnecessary semicolon --> src/parse.rs:860:10 | 860 | }; | ^ help: remove | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_semicolon = note: `-W clippy::unnecessary-semicolon` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::unnecessary_semicolon)]`
1 parent 0a77455 commit 020a8ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ fn digits(mut input: Cursor) -> Result<Cursor, Reject> {
857857
continue;
858858
}
859859
_ => break,
860-
};
860+
}
861861
len += 1;
862862
empty = false;
863863
}

0 commit comments

Comments
 (0)