From 4ce6d2c4e5373c1e29c9d8050ba460fa93032e4c Mon Sep 17 00:00:00 2001 From: Jorge Gomez Date: Thu, 21 Dec 2023 20:16:23 -0600 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typo=20in=20optional?= =?UTF-8?q?=20argument=20docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/tutorial/arguments/optional.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/arguments/optional.md b/docs/tutorial/arguments/optional.md index 60f1dba..c52e689 100644 --- a/docs/tutorial/arguments/optional.md +++ b/docs/tutorial/arguments/optional.md @@ -93,7 +93,7 @@ It's still not very useful, but it works correctly. And being able to declare a **required** *CLI argument* using ```Python -name: Annoated[str, typer.Argument()] +name: Annotated[str, typer.Argument()] ``` ...that works exactly the same as