summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKyle King <KyleKing@users.noreply.github.com>2020-10-31 18:49:07 -0400
committerGitHub <noreply@github.com>2020-10-31 18:49:07 -0400
commit305ac17fbac35d775fdcccf6ec787b13915b2323 (patch)
treec119ad054639ed67e7dc1d7bdf1d7dc02266e03e /docs
parentd4aa9a41006ae2e26f21cac516ebd9933fc39379 (diff)
downloadcmd2-git-305ac17fbac35d775fdcccf6ec787b13915b2323.tar.gz
Fixed error in set --long, which should be set -v
(Cmd) set --long Usage: set [-h] [-v] [param] [value] Error: unrecognized arguments: --long
Diffstat (limited to 'docs')
-rw-r--r--docs/features/settings.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/features/settings.rst b/docs/features/settings.rst
index aa3e5cec..62188cbe 100644
--- a/docs/features/settings.rst
+++ b/docs/features/settings.rst
@@ -134,9 +134,9 @@ changes a setting, and will receive both the old value and the new value.
.. code-block:: text
- (Cmd) set --long | grep sunny
+ (Cmd) set -v | grep sunny
sunny: False # Is it sunny outside?
- (Cmd) set --long | grep degrees
+ (Cmd) set -v | grep degrees
degrees_c: 22 # Temperature in Celsius
(Cmd) sunbathe
Too dim.