We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ade8ce commit 5eea708Copy full SHA for 5eea708
Changelog.md
@@ -1,5 +1,7 @@
1
# Unreleased
2
3
+- Fix "unnnecessary trailing semicolon" warning on Rust 1.51
4
+
5
# 0.10.2 – 2020-12-10
6
7
- Fix nightly breakage of doctests in workspaces ([#69](https://github.com/rust-osdev/bootimage/pull/69))
src/args/build.rs
@@ -30,7 +30,7 @@ impl BuildCommand {
30
return Err(anyhow!("multiple arguments of same type provided"));
31
}
32
Ok(())
33
- };
+ }
34
35
let mut arg_iter = args;
36
while let Some(arg) = arg_iter.next() {
0 commit comments