@@ -185,14 +185,16 @@ desc.add_options()
185
185
("email", value< string> ()->multitoken(), "email to send to")
186
186
;
187
187
</programlisting >
188
- For the first parameter, we specify only the name and the
189
- description. No value can be specified in the parsed source.
190
- For the first option, the user must specify a value, using a single
191
- token. For the third option, the user may either provide a single token
192
- for the value, or no token at all. For the last option, the value can
193
- span several tokens. For example, the following command line is OK:
188
+ For the first option (<literal >help</literal >), we specify only the name
189
+ and the description. No value can be specified in the parsed source.
190
+ For the second option (<literal >compression</literal >), the user must
191
+ specify a value, using a single token. For the third option
192
+ (<literal >verbose</literal >), the user may either provide a single token
193
+ for the value, or no token at all. For the last option
194
+ (<literal >email</literal >), the value can span several tokens. For
195
+ example, the following command line is OK:
194
196
<screen >
195
- test --help --compression 10 --verbose --email beadle @mars beadle2 @mars
197
+ test --help --compression 10 --verbose --email beagle @mars beagle2 @mars
196
198
</screen >
197
199
</para >
198
200
0 commit comments