Skip to content

Commit 2f95841

Browse files
EdwardBettsCube707
authored andcommitted
Correct spelling mistakes
1 parent 3435a45 commit 2f95841

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

readchar/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
class config:
7-
"""Static class that containes Constants used throughout the libary.
7+
"""Static class that contains Constants used throughout the library.
88
You can directly use the class-attributes, do not create instances of it!"""
99

1010
def __new__(cls):

readchar/_posix_key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
PAGE_UP = "\x1b\x5b\x35\x7e"
1919
PAGE_DOWN = "\x1b\x5b\x36\x7e"
2020

21-
# funcion keys
21+
# function keys
2222
F1 = "\x1b\x4f\x50"
2323
F2 = "\x1b\x4f\x51"
2424
F3 = "\x1b\x4f\x52"

readchar/_win_key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
PAGE_UP = "\x00\x49"
2828
PAGE_DOWN = "\x00\x51"
2929

30-
# funcion keys
30+
# function keys
3131
F1 = "\x00\x3b"
3232
F2 = "\x00\x3c"
3333
F3 = "\x00\x3d"

readchar/key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# flake8: noqa E401,E403
2-
# this file exists only for backwards compatability
2+
# this file exists only for backwards compatibility
33
# it allow the use of `import readchar.key`
44

55
from . import platform

0 commit comments

Comments
 (0)