From 877cf182965d9bfbcb13df7d6003132071f10831 Mon Sep 17 00:00:00 2001 From: "Evan E. Baird" Date: Mon, 22 Jun 2020 11:19:46 -0600 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Fix=20typo=20in=20docs=20(#98)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sebastián Ramírez --- docs/tutorial/arguments.md | 4 +++- docs/tutorial/options/autocompletion.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/arguments.md b/docs/tutorial/arguments.md index 018e05c..5c2b8ef 100644 --- a/docs/tutorial/arguments.md +++ b/docs/tutorial/arguments.md @@ -203,4 +203,6 @@ You should document your *CLI arguments* the same way. ## Other uses -`typer.Argument()` has several other use-cases; for data validation, to enable other features, etc. You will learn about these later in the docs. +`typer.Argument()` has several other use cases. Such as for data validation, to enable other features, etc. + +You will see about these use cases later in the docs. diff --git a/docs/tutorial/options/autocompletion.md b/docs/tutorial/options/autocompletion.md index 156e5f6..630d94c 100644 --- a/docs/tutorial/options/autocompletion.md +++ b/docs/tutorial/options/autocompletion.md @@ -262,7 +262,7 @@ You can also get the raw *CLI parameters*, just a `list` of `str` with everythin For example, something like `["typer", "main.py", "run", "--name"]`. !!! tip - This would be for advanced scenarios, in most use cases you would be better of using the context. + This would be for advanced scenarios, in most use cases you would be better off using the context. But it's still possible if you need it.