mirror of
https://github.com/clap-rs/clap
synced 2024-11-12 23:57:10 +00:00
162a556dba
Adding "found" might seem minor but I feel it has a slight softening on the message. It also maintains scanability as it is at the end and short. As this is a one-off message change and not a styling issue to be consistent with, I think this is safe to put in a patch release.
11 lines
240 B
TOML
11 lines
240 B
TOML
bin.name = "stdio-fixture"
|
|
args = ["--unknown-argument"]
|
|
status.code = 2
|
|
stdout = ""
|
|
stderr = """
|
|
error: unexpected argument '--unknown-argument' found
|
|
|
|
Usage: stdio-fixture[EXE] [OPTIONS] [COMMAND]
|
|
|
|
For more information, try '--help'.
|
|
"""
|