docs: Fix link to example

This commit is contained in:
Jörg Wunderlich-Pfeiffer 2022-03-06 10:57:39 +01:00
parent 0d022f18a9
commit 92e1666868

View file

@ -308,7 +308,7 @@ $ 03_04_subcommands_derive add bob
Above, we used a struct-variant to define the `add` subcommand. Alternatively,
you can
[use a struct for your subcommand's arguments](03_04_subcommands_alt_derive.rs).
[use a struct for your subcommand's arguments](03_04_subcommands_alt.rs).
Because we used `command: Commands` instead of `command: Option<Commands>`:
```console