Skip to content

Commit 54bfa63

Browse files
committed
Fix typos and improve comment readability
1 parent 33bbfb7 commit 54bfa63

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

alldefconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# SPDX-License-Identifier: ISC
55

66
"""
7-
Writes a configuration file where all symbols are set to their their default
7+
Writes a configuration file where all symbols are set to their default
88
values.
99
1010
The default output filename is '.config'. A different filename can be passed in

guiconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ def _create_kconfig_desc(parent):
665665
desc = Text(frame, height=12, wrap="none", borderwidth=0, state="disabled")
666666
desc.grid(column=0, row=0, sticky="nsew")
667667

668-
# Work around not being to Ctrl-C/V text from a disabled Text widget, with a
668+
# Work around not being able to Ctrl-C/V text from a disabled Text widget, with a
669669
# tip found in https://stackoverflow.com/questions/3842155/is-there-a-way-to-make-the-tkinter-text-widget-read-only
670670
desc.bind("<1>", lambda _: desc.focus_set())
671671

setconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def main():
3939
"--no-check-exists",
4040
dest="check_exists",
4141
action="store_false",
42-
help="Ignore assignments to non-existent symbols instead of erroring " "out",
42+
help="Ignore assignments to non-existent symbols instead of erroring out",
4343
)
4444

4545
parser.add_argument(

testsuite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# make sure everything passes with it.
2020
#
2121
# - obsessive-min-config:
22-
# Like obsessive, for the minimal configuation (defconfig) tests.
22+
# Like obsessive, for the minimal configuration (defconfig) tests.
2323
#
2424
# - log:
2525
# Log timestamped defconfig test failures to the file test_defconfig_fails.

0 commit comments

Comments
 (0)