We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e008f17 commit 19525e2Copy full SHA for 19525e2
src/lib.rs
@@ -168,7 +168,7 @@ impl From<io::Error> for Error {
168
}
169
170
impl Display for Error {
171
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
172
write!(f, "{:?}: {}", self.kind, self.message)
173
174
@@ -2207,7 +2207,7 @@ impl Build {
2207
ArchSpec::Simulator(arch) => {
2208
cmd.args.push(arch.into());
2209
cmd.args
2210
- .push(format!("-mwatch-simulator-version-min={}", min_version).into());
+ .push(format!("-mwatchsimulator-version-min={}", min_version).into());
2211
"watchsimulator"
2212
2213
};
0 commit comments