Skip to content

Commit b112ce1

Browse files
delirious-lettucejonathanslenders
authored andcommitted
Fix typos: explicitely -> explicitly, possition -> position
1 parent ecb77ea commit b112ce1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/pages/asking_for_input.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ In the following sections, we will discover all these parameters.
3535
`prompt_toolkit` expects unicode strings everywhere. If you are using
3636
Python 2, make sure that all strings which are passed to `prompt_toolkit`
3737
are unicode strings (and not bytes). Either use
38-
``from __future__ import unicode_literals`` or explicitely put a small
38+
``from __future__ import unicode_literals`` or explicitly put a small
3939
``'u'`` in front of every string.
4040

4141

@@ -325,7 +325,7 @@ Input validation
325325
A prompt can have a validator attached. This is some code that will check
326326
whether the given input is acceptable and it will only return it if that's the
327327
case. Otherwise it will show an error message and move the cursor to a given
328-
possition.
328+
position.
329329

330330
A validator should implements the :class:`~prompt_toolkit.validation.Validator`
331331
abstract base class. This requires only one method, named ``validate`` that

0 commit comments

Comments
 (0)