From 1d94f2bbf9422c35855d26ae8cf45bab0ddf490a Mon Sep 17 00:00:00 2001 From: "Olivia (Zoe)" Date: Thu, 23 Oct 2025 05:02:36 +0200 Subject: [PATCH] Fix incorrect links to validator examples (#1239) 8c77664bd07b9901ad7a3c4c425179c49bd845e1 added the files and the links, but the links were off by one character and therefore don't work. This PR fixes them --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6f83da62..f1637e18 100644 --- a/README.md +++ b/README.md @@ -1752,9 +1752,9 @@ brief description of each is included here Short example of subcommands - [validators](https://github.com/CLIUtils/CLI11/blob/main/examples/validators.cpp): Example illustrating use of validators -- [custom validators](https://github.com/CLIUtils/CLI11/blob/main/examples/custom_validators.cpp): +- [custom validators](https://github.com/CLIUtils/CLI11/blob/main/examples/custom_validator.cpp): Example illustrating use of validators -- [date validators](https://github.com/CLIUtils/CLI11/blob/main/examples/date_validators.cpp): +- [date validators](https://github.com/CLIUtils/CLI11/blob/main/examples/date_validator.cpp): Example illustrating use of validators ## Contribute