✏ Fix typo in docs (#98)

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
Evan E. Baird 2020-06-22 11:19:46 -06:00 committed by GitHub
parent 57343e1402
commit 877cf18296
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -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.

View file

@ -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.