diff options
author | Kyle King <KyleKing@users.noreply.github.com> | 2020-10-31 18:49:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-31 18:49:07 -0400 |
commit | 305ac17fbac35d775fdcccf6ec787b13915b2323 (patch) | |
tree | c119ad054639ed67e7dc1d7bdf1d7dc02266e03e /docs | |
parent | d4aa9a41006ae2e26f21cac516ebd9933fc39379 (diff) | |
download | cmd2-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.rst | 4 |
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. |