mirror of
https://github.com/Textualize/rich.git
synced 2025-08-04 01:58:24 +00:00
fix typo in docs
This commit is contained in:
parent
3430909031
commit
10705a43b2
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ If you supply a list of choices, the prompt will loop until the user enters one
|
|||
>>> from rich.prompt import Prompt
|
||||
>>> name = Prompt.ask("Enter your name", choices=["Paul", "Jessica", "Duncan"], default="Paul")
|
||||
|
||||
By default this is case sensitive, but you can set `case_insensitive=True` to make it case sensitive::
|
||||
By default this is case sensitive, but you can set `case_insensitive=True` to make it case insensitive::
|
||||
|
||||
>>> from rich.prompt import Prompt
|
||||
>>> name = Prompt.ask("Enter your name", choices=["Paul", "Jessica", "Duncan"], default="Paul", case_insensitive=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue