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 dddc9e5 commit 2a22393Copy full SHA for 2a22393
src/lib.rs
@@ -165,7 +165,7 @@ impl From<io::Error> for Error {
165
}
166
167
impl Display for Error {
168
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
169
write!(f, "{:?}: {}", self.kind, self.message)
170
171
@@ -2044,7 +2044,7 @@ impl Build {
2044
ArchSpec::Simulator(arch) => {
2045
cmd.args.push(arch.into());
2046
cmd.args
2047
- .push(format!("-mwatch-simulator-version-min={}", min_version).into());
+ .push(format!("-mwatchsimulator-version-min={}", min_version).into());
2048
"watchsimulator"
2049
2050
};
0 commit comments