summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-11-04 23:40:47 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2017-11-04 23:40:47 +0100
commit54143e4d6a4ac4e7be9d5c9728c5ac606f5d3a2e (patch)
tree4d761daec31aeb390f9314e8bda1c1b930a9cf4c /examples
parent3d6df4e3b12e4449cc1500ade49186aea340342d (diff)
Fix some menuconfig.py typos
Diffstat (limited to 'examples')
-rw-r--r--examples/menuconfig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/menuconfig.py b/examples/menuconfig.py
index 42bdf3f..a4038f8 100644
--- a/examples/menuconfig.py
+++ b/examples/menuconfig.py
@@ -218,7 +218,7 @@ def node_str(node):
def print_menuconfig_nodes(node, indent):
"""
- Prints a tree with all the menu entries rooted at node. Child menu nodes
+ Prints a tree with all the menu entries rooted at node. Child menu entries
are indented.
"""
while node is not None:
@@ -233,7 +233,7 @@ def print_menuconfig_nodes(node, indent):
def print_menuconfig(kconf):
"""
- Prints all menu entries for the configurations.
+ Prints all menu entries for the configuration.
"""
# Print the expanded mainmenu text at the top. This is the same as
# kconf.top_node.prompt[0], but with variable references expanded.