summaryrefslogtreecommitdiff
path: root/menuconfig.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-05-10 13:14:56 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-05-10 13:15:51 +0200
commit0a037ccbaf2610adffa082cfeec334acdf3c23ce (patch)
tree780d0b16b2516bab0a8db9195c85ce1ab94fbfe8 /menuconfig.py
parent748faee0687b4b2842c17ee881faa54e73353821 (diff)
menuconfig: Remove confusing menu list comment
Might have made it sound like _parent_menu() returns a list.
Diffstat (limited to 'menuconfig.py')
-rwxr-xr-xmenuconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/menuconfig.py b/menuconfig.py
index 81aed63..8b3ca40 100755
--- a/menuconfig.py
+++ b/menuconfig.py
@@ -916,7 +916,7 @@ def _draw_main():
def _parent_menu(node):
# Returns the menu node of the menu that contains 'node'. In addition to
# proper 'menu's, this might also be a 'menuconfig' symbol or a 'choice'.
- # "Menu" here means a menu in the interface (a list of menu entries).
+ # "Menu" here means a menu in the interface.
menu = node.parent
while not menu.is_menuconfig: