docs(tutorial): Examples as next step

This commit is contained in:
Ed Page 2022-02-22 08:37:13 -06:00
parent 7e51f7c03d
commit c55989459f
2 changed files with 3 additions and 1 deletions

View file

@ -642,6 +642,7 @@ Doing work using input input.txt and config config.toml
## Tips
- For more complex demonstration of features, see our [examples](../README.md).
- Proactively check for bad `Command` configurations by calling `Command::debug_assert` in a test ([example](05_01_assert.rs))
## Contributing

View file

@ -614,9 +614,10 @@ Doing work using input input.txt and config config.toml
## Tips
- Proactively check for bad `Command` configurations by calling `Command::debug_assert` in a test ([example](05_01_assert.rs))
- For more complex demonstration of features, see our [examples](../README.md).
- 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.
- Proactively check for bad `Command` configurations by calling `Command::debug_assert` in a test ([example](05_01_assert.rs))
## Contributing