diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-04-23 22:17:00 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-04-23 22:17:00 +0200 |
| commit | b0def33f13f1fc2403b1a0bc6666ec874314d4ad (patch) | |
| tree | 1218bb8423f5a869cebef112e3a621abff8a1dde | |
| parent | 619adba5854a40773eb674437ef4608ac280ba90 (diff) | |
| download | tools.nes-b0def33f13f1fc2403b1a0bc6666ec874314d4ad.tar.gz tools.nes-b0def33f13f1fc2403b1a0bc6666ec874314d4ad.zip | |
xa65: fix indentation on the help message
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
| -rw-r--r-- | crates/xa65/src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crates/xa65/src/main.rs b/crates/xa65/src/main.rs index 0a5e35c..abf866b 100644 --- a/crates/xa65/src/main.rs +++ b/crates/xa65/src/main.rs @@ -28,9 +28,7 @@ fn print_help() { println!(" -b, --bin <PROGRAM>\tAlternative to the binary for 'nasm'."); println!(" -C, --config <FILE>\tLinker configuration to be used, whether an identifier or a file path."); println!(" -h, --help\t\tPrint this message."); - println!( - " -n, --no-errors\t\tError out if the output differ or 'nasm' has produced an error." - ); + println!(" -n, --no-errors\tError out if the output differ or 'nasm' has produced an error."); println!(" -s, --strict\t\tBe more strict on 'nasm' by adding the address-sanitizer and writing debug/analysis information."); println!(" --stats\t\tPrint statistics to the standard output."); println!(" -o, --out <FILE>\tFile path where the output should be located after execution."); |
