Skip to content

Commit

Permalink
Fixed typos in documentation (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiancross committed Jun 6, 2021
1 parent 46eb492 commit c5b6066
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion questionary/prompts/autocomplete.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def autocomplete(
.. image:: ../images/autocomplete.gif
This is just a realy basic example, the prompt can be customised using the
This is just a really basic example, the prompt can be customised using the
parameters.
Expand Down
2 changes: 1 addition & 1 deletion questionary/prompts/checkbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def checkbox(
.. image:: ../images/checkbox.gif
This is just a realy basic example, the prompt can be customised using the
This is just a really basic example, the prompt can be customised using the
parameters.
Expand Down
6 changes: 3 additions & 3 deletions questionary/prompts/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Choice:
"""

title: FormattedText
"""Dispay string for the choice"""
"""Display string for the choice"""

value: Optional[Any]
"""Value of the choice"""
Expand Down Expand Up @@ -119,10 +119,10 @@ class Separator(Choice):
"""Used to space/separate choices group."""

default_separator: str = "-" * 15
"""The default seperator used if none is specified"""
"""The default separator used if none is specified"""

line: str
"""The string being used as a seperator"""
"""The string being used as a separator"""

def __init__(self, line: Optional[str] = None) -> None:
"""Create a separator in a list.
Expand Down
2 changes: 1 addition & 1 deletion questionary/prompts/confirm.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def confirm(
.. image:: ../images/confirm.gif
This is just a realy basic example, the prompt can be customised using the
This is just a really basic example, the prompt can be customised using the
parameters.
Expand Down
2 changes: 1 addition & 1 deletion questionary/prompts/password.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def password(
.. image:: ../images/password.gif
This is just a realy basic example, the prompt can be customised using the
This is just a really basic example, the prompt can be customised using the
parameters.
Args:
Expand Down
2 changes: 1 addition & 1 deletion questionary/prompts/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def path(
.. image:: ../images/path.gif
This is just a realy basic example, the prompt can be customised using the
This is just a really basic example, the prompt can be customised using the
parameters.
Args:
Expand Down
2 changes: 1 addition & 1 deletion questionary/prompts/rawselect.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def rawselect(
.. image:: ../images/rawselect.gif
This is just a realy basic example, the prompt can be customised using the
This is just a really basic example, the prompt can be customised using the
parameters.
Args:
Expand Down
2 changes: 1 addition & 1 deletion questionary/prompts/select.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def select(
.. image:: ../images/select.gif
This is just a realy basic example, the prompt can be customised using the
This is just a really basic example, the prompt can be customised using the
parameters.
Expand Down
2 changes: 1 addition & 1 deletion questionary/prompts/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def text(
.. image:: ../images/text.gif
This is just a realy basic example, the prompt can be customised using the
This is just a really basic example, the prompt can be customised using the
parameters.
Args:
Expand Down

0 comments on commit c5b6066

Please sign in to comment.