diff --git a/docs/tutorial/arguments.md b/docs/tutorial/arguments.md index 018e05cc11..5c2b8ef497 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 156e5f6c7d..630d94c4ac 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.