From b65367a15a3f04a4cba402bd7530c76399b80638 Mon Sep 17 00:00:00 2001 From: Andreas Deininger Date: Wed, 15 Dec 2021 19:44:08 +0100 Subject: [PATCH] Documentation: add link to multifile subcommand example in repo (#691) --- book/chapters/an-advanced-example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/chapters/an-advanced-example.md b/book/chapters/an-advanced-example.md index 84e838eb..6674df5d 100644 --- a/book/chapters/an-advanced-example.md +++ b/book/chapters/an-advanced-example.md @@ -28,4 +28,4 @@ You'll see it behaves pretty much like `git`. ## Multi-file App parse code -This example could be made much nicer if it was split into files, one per subcommand. If you simply use shared pointers instead of raw values in the lambda capture, you can tie the lifetime to the lambda function lifetime. CLI11 has a multifile example in its example folder. +This example could be made much nicer if it was split into files, one per subcommand. If you simply use shared pointers instead of raw values in the lambda capture, you can tie the lifetime to the lambda function lifetime. CLI11 has a [multifile example](https://github.com/CLIUtils/CLI11/tree/main/examples/subcom_in_files) in its example folder.