summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/features/options.cli2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/features/options.cli b/examples/features/options.cli
index e6a8738..ea055b3 100644
--- a/examples/features/options.cli
+++ b/examples/features/options.cli
@@ -31,7 +31,7 @@ namespace features
std::set<int> --set | -s;
// We can also use maps. In this case the option value is expected to have
- // two part, the key and the value, separated by '='. For example: -m a=A
+ // two parts: the key and the value, separated by '='. For example: -m a=A
// -m =B -m c= -m d (same as -m d=).
//
std::map<std::string, std::string> --map | -m;