Fix macro typo (#11578)

This typo wasn't caught because the `($arg:expr, false)` macro branch
was never exercised.

For example, prior to this change, if you add
```
show_settings!(globals, false);
```
below, you'll get a compiler error.
This commit is contained in:
John Mumm 2025-02-17 16:57:51 +01:00 committed by GitHub
parent 90e9287dd8
commit 1bc7d93f4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1405,11 +1405,6 @@ async fn run_project(
return Ok(ExitStatus::Success);
}
};
($arg:expr, false) => {
if globals.show_settings {#
writeln!(printer.stdout(), "{:#?}", $arg)?;
}
};
}
match *project_command {