Skip to content

Commit 20f622c

Browse files
committed
Remove unnecessary semicolon.
1 parent 323a077 commit 20f622c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/fmt/rt.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ impl Argument<'_> {
157157
pub const fn from_usize(x: &usize) -> Argument<'_> {
158158
if *x > u16::MAX as usize {
159159
panic!("Formatting argument out of range");
160-
};
160+
}
161161
Argument { ty: ArgumentType::Count(*x as u16) }
162162
}
163163

0 commit comments

Comments
 (0)