Skip to content

Commit 7677567

Browse files
committed
Remove unnecessary semicolon.
1 parent ce512c2 commit 7677567

File tree

1 file changed

+1
-1
lines changed
  • library/core/src/fmt

1 file changed

+1
-1
lines changed

Diff for: library/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)