From 554396be3b19bff45384a3c6307a1eb9a3497940 Mon Sep 17 00:00:00 2001 From: Blake-Madden <66873089+Blake-Madden@users.noreply.github.com> Date: Fri, 24 Nov 2023 19:49:16 -0500 Subject: [PATCH] Minor typo in README.md (#411) Fix grammar in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c79de25..603e435 100644 --- a/README.md +++ b/README.md @@ -193,8 +193,8 @@ therefore, `-o false` does not work. ## `std::vector` values -Parsing of list of values in form of an `std::vector` is also supported, as long as `T` -can be parsed. To separate single values in a list the definition `CXXOPTS_VECTOR_DELIMITER` +Parsing a list of values into a `std::vector` is also supported, as long as `T` +can be parsed. To separate single values in a list the define symbol `CXXOPTS_VECTOR_DELIMITER` is used, which is ',' by default. Ensure that you use no whitespaces between values because those would be interpreted as the next command line option. Example for a command line option that can be parsed as a `std::vector`: