From 39c57cc37d2a3b010539774f96137b8ef721097b Mon Sep 17 00:00:00 2001 From: Justin Mayer Date: Sun, 17 Nov 2019 12:44:19 -0800 Subject: [PATCH] Docs: `self:update` changed to `self update` (#1588) --- docs/docs/index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/docs/index.md b/docs/docs/index.md index 66fb0ade021..9cbf2d60736 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -117,28 +117,28 @@ pipx uninstall poetry ## Updating `poetry` -Updating poetry to the latest stable version is as simple as calling the `self:update` command. +Updating Poetry to the latest stable version is as simple as calling the `self update` command. ```bash -poetry self:update +poetry self update ``` -If you want to install prerelease versions, you can use the `--preview` option. +If you want to install pre-release versions, you can use the `--preview` option. ```bash -poetry self:update --preview +poetry self update --preview ``` -And finally, if you want to install a specific version you can pass it as an argument -to `self:update`. +And finally, if you want to install a specific version, you can pass it as an argument +to `self update`. ```bash -poetry self:update 0.8.0 +poetry self update 0.8.0 ``` !!!note - The `self:update` command will only work if you used the recommended + The `self update` command will only work if you used the recommended installer to install Poetry.