File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Original file line number Diff line number Diff line change @@ -237,10 +237,9 @@ option definition as an example::
237
237
'Should I yell while greeting?'
238
238
);
239
239
240
- We want to use this option in 3 ways: ``--yell ``, ``yell=louder ``, and not
241
- passing the option at all; however, the task of distinguishing between when
242
- the option was used without a value (``greet --yell ``) or when it wasn't used
243
- at all (``greet ``) it's a bit impervious.
240
+ This option can be used in 3 ways: ``--yell ``, ``yell=louder ``, and not passing
241
+ the option at all. However, it's hard to distinguish between passing the option
242
+ without a value (``greet --yell ``) and not passing the option (``greet ``).
244
243
245
244
To solve this issue, you have to set the option's default value to ``false ``::
246
245
You can’t perform that action at this time.
0 commit comments