From ab4b613ed3859ddb70b9b00356ecef1d1786eddb Mon Sep 17 00:00:00 2001 From: Youssef BENHSSAIEN Date: Tue, 17 Nov 2020 10:02:05 +0100 Subject: [PATCH] Fix option double dashes --- console/input.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/input.rst b/console/input.rst index 3e99b39e515..0813bad58c5 100644 --- a/console/input.rst +++ b/console/input.rst @@ -247,7 +247,7 @@ optionally accepts a value, but it's a bit tricky. Consider this example:: ) ; -This option can be used in 3 ways: ``greet --yell``, ``greet yell=louder``, +This option can be used in 3 ways: ``greet --yell``, ``greet --yell=louder``, and ``greet``. However, it's hard to distinguish between passing the option without a value (``greet --yell``) and not passing the option (``greet``).