From 856a6ba1174534e57d2590eabea7bdf730e544c3 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Fri, 18 Mar 2022 07:38:07 +0200 Subject: [PATCH] Docs: Capitalise Y as the default for Proceed (#10969) Co-authored-by: Pradyun Gedam --- docs/html/cli/pip_uninstall.rst | 4 ++-- docs/html/getting-started.md | 6 ++---- news/10936.doc.rst | 1 + 3 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 news/10936.doc.rst diff --git a/docs/html/cli/pip_uninstall.rst b/docs/html/cli/pip_uninstall.rst index e6eeb5ebf6a..0dd52619d80 100644 --- a/docs/html/cli/pip_uninstall.rst +++ b/docs/html/cli/pip_uninstall.rst @@ -43,7 +43,7 @@ Examples Uninstalling simplejson: /home/me/env/lib/python3.9/site-packages/simplejson /home/me/env/lib/python3.9/site-packages/simplejson-2.2.1-py3.9.egg-info - Proceed (y/n)? y + Proceed (Y/n)? y Successfully uninstalled simplejson .. tab:: Windows @@ -54,5 +54,5 @@ Examples Uninstalling simplejson: /home/me/env/lib/python3.9/site-packages/simplejson /home/me/env/lib/python3.9/site-packages/simplejson-2.2.1-py3.9.egg-info - Proceed (y/n)? y + Proceed (Y/n)? y Successfully uninstalled simplejson diff --git a/docs/html/getting-started.md b/docs/html/getting-started.md index 5c22d1abebc..0967b0eb99f 100644 --- a/docs/html/getting-started.md +++ b/docs/html/getting-started.md @@ -81,10 +81,8 @@ Successfully installed sampleproject ```{pip-cli} $ pip install --upgrade sampleproject -Uninstalling sampleproject: [...] -Proceed (y/n)? y -Successfully uninstalled sampleproject +Successfully installed sampleproject ``` ### Uninstall a package @@ -93,7 +91,7 @@ Successfully uninstalled sampleproject $ pip uninstall sampleproject Uninstalling sampleproject: [...] -Proceed (y/n)? y +Proceed (Y/n)? y Successfully uninstalled sampleproject ``` diff --git a/news/10936.doc.rst b/news/10936.doc.rst new file mode 100644 index 00000000000..390b67c24c9 --- /dev/null +++ b/news/10936.doc.rst @@ -0,0 +1 @@ +Capitalise Y as the default for "Proceed (y/n)?" when uninstalling.