From 305ac17fbac35d775fdcccf6ec787b13915b2323 Mon Sep 17 00:00:00 2001 From: Kyle King Date: Sat, 31 Oct 2020 18:49:07 -0400 Subject: Fixed error in set --long, which should be set -v (Cmd) set --long Usage: set [-h] [-v] [param] [value] Error: unrecognized arguments: --long --- docs/features/settings.rst | 4 ++-- 1 file 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. -- cgit v1.2.1 From 8e13a8b41c6136beef91c1a88aa3c35b9bc1c560 Mon Sep 17 00:00:00 2001 From: Kyle King Date: Sat, 31 Oct 2020 22:44:24 -0400 Subject: Use set --verbose instead of -v in docs --- docs/features/settings.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features/settings.rst b/docs/features/settings.rst index 62188cbe..c21b3258 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 -v | grep sunny + (Cmd) set --verbose | grep sunny sunny: False # Is it sunny outside? - (Cmd) set -v | grep degrees + (Cmd) set --verbose | grep degrees degrees_c: 22 # Temperature in Celsius (Cmd) sunbathe Too dim. -- cgit v1.2.1