summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-18 15:17:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-18 15:17:14 +0200
commit5a37b451ae2ad504e5aee7e21219aad6a1bf1ee7 (patch)
tree970cd426669c5755634175834fc997a77fbd798c /examples
parent64ed039a66d357ca731d50313e811ba69f5873c9 (diff)
Fix a typo
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;