From 5b3c73566f71cfa7cfdfa1673f51130f4e3f3ce9 Mon Sep 17 00:00:00 2001 From: Eyal Levin Date: Mon, 6 Apr 2020 14:54:53 +0300 Subject: [PATCH] Update "An" to "A" 'An' should come before a vowel sound. https://english.stackexchange.com/a/164/198117 --- poetry/console/commands/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poetry/console/commands/init.py b/poetry/console/commands/init.py index 825f8c68e2a..b74d191fa5c 100644 --- a/poetry/console/commands/init.py +++ b/poetry/console/commands/init.py @@ -151,7 +151,7 @@ def handle(self): " - A git url with a revision (git+https://github.com/python-poetry/poetry.git#develop)\n" " - A file path (../my-package/my-package.whl)\n" " - A directory (../my-package/)\n" - " - An url (https://example.com/packages/my-package-0.1.0.tar.gz)\n" + " - A url (https://example.com/packages/my-package-0.1.0.tar.gz)\n" ) help_displayed = False if self.confirm(question, True):