From 0fe8f472f59be6523673c3775043d5d9e4a3a53a Mon Sep 17 00:00:00 2001 From: graue70 <23035329+graue70@users.noreply.github.com> Date: Thu, 12 May 2022 21:17:49 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Fix=20typo=20in=20docs=20for=20CLI?= =?UTF-8?q?=20Option=20autocompletion=20(#288)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sebastián Ramírez --- docs/tutorial/options/autocompletion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/options/autocompletion.md b/docs/tutorial/options/autocompletion.md index 4b4489e..136f661 100644 --- a/docs/tutorial/options/autocompletion.md +++ b/docs/tutorial/options/autocompletion.md @@ -222,7 +222,7 @@ If there's no `--name` in the command line, it will be `None`, so we use `or []` Then, when we have a completion candidate, we check if each `name` was already provided with `--name` by checking if it's in that list of `names` with `name not in names`. -And then we `yield` each item that has not being used yet. +And then we `yield` each item that has not been used yet. Check it: