Skip to content

Commit 28bdee1

Browse files
infmagic2047jonathanslenders
authored andcommitted
Fix non-ASCII characters breaking python2
1 parent 96b0eb2 commit 28bdee1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prompt_toolkit/key_binding/bindings/named_commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def unix_word_rubout(event, WORD=True):
333333
@register('backward-kill-word')
334334
def backward_kill_word(event):
335335
"""
336-
Kills the word before point, using not a letter nor a digit as a word boundary.
336+
Kills the word before point, using "not a letter nor a digit" as a word boundary.
337337
Usually bound to M-Del or M-Backspace.
338338
"""
339339
unix_word_rubout(event, WORD=False)

0 commit comments

Comments
 (0)