summaryrefslogtreecommitdiff
path: root/menuconfig.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2019-04-26 17:59:55 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2019-04-26 17:59:55 +0200
commitd0f8138e4c1800576210868605748919abc34371 (patch)
tree880fb114ec172e24d0eeb06957dee3348c776058 /menuconfig.py
parente998668b1aac49a97bc9b33fbb92d0d500508385 (diff)
menuconfig: Style consistency nits
Diffstat (limited to 'menuconfig.py')
-rwxr-xr-xmenuconfig.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/menuconfig.py b/menuconfig.py
index 438aa03..6fe1759 100755
--- a/menuconfig.py
+++ b/menuconfig.py
@@ -244,7 +244,7 @@ _MAIN_HELP_LINES = """
# Lines of help text shown at the bottom of the information dialog
_INFO_HELP_LINES = """
-[ESC/q] Return to menu [/] Jump to symbol
+[ESC/q] Return to menu [/] Jump to symbol
"""[1:-1].split("\n")
# Lines of help text shown at the bottom of the search dialog
@@ -1052,7 +1052,7 @@ def _width(win):
def _enter_menu(menu):
# Makes 'menu' the currently displayed menu. In addition to actual 'menu's,
- # "Menu" here includes choices and symbols defined with the 'menuconfig'
+ # "menu" here includes choices and symbols defined with the 'menuconfig'
# keyword.
#
# Returns False if 'menu' can't be entered.
@@ -1615,7 +1615,7 @@ def _changeable(node):
return False
return sc.orig_type in (STRING, INT, HEX) or len(sc.assignable) > 1 \
- or _is_y_mode_choice_sym(sc)
+ or _is_y_mode_choice_sym(sc)
def _set_sel_node_tri_val(tri_val):