docs(tutorial): Clarify to debug_assert in tests

This commit is contained in:
Ed Page 2022-02-22 08:29:53 -06:00
parent 3eee9add96
commit 9946579fc9
2 changed files with 2 additions and 2 deletions

View file

@ -642,7 +642,7 @@ Doing work using input input.txt and config config.toml
## Tips
- Proactively check for bad `Command` configurations by calling `Command::debug_assert` ([example](05_01_assert.rs))
- Proactively check for bad `Command` configurations by calling `Command::debug_assert` in a test ([example](05_01_assert.rs))
## Contributing

View file

@ -614,7 +614,7 @@ Doing work using input input.txt and config config.toml
## Tips
- Proactively check for bad `Command` configurations by calling `Command::debug_assert` ([example](05_01_assert.rs))
- Proactively check for bad `Command` configurations by calling `Command::debug_assert` in a test ([example](05_01_assert.rs))
- See the [derive reference](../derive_ref/README.md) to understand how to use
anything in the [builder API](https://docs.rs/clap/) in the derive API.