summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/find_symbol.py4
-rw-r--r--examples/menuconfig.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/find_symbol.py b/examples/find_symbol.py
index 42677ec..63790c2 100644
--- a/examples/find_symbol.py
+++ b/examples/find_symbol.py
@@ -144,8 +144,8 @@ def node_references_sym(node, sym_name):
return expr_contains_sym(node.visibility, sym_name)
# Comments are already handled by searching the prompt condition, because
- # 'depends on' gets propagated to its condition. This is why we don't need
- # to look at the direct dependencies for MENU either.
+ # 'depends on' gets propagated to it. This is why we don't need to look at
+ # the direct dependencies for MENU either.
def nodes_referencing_sym(node, sym_name):
"""
diff --git a/examples/menuconfig.py b/examples/menuconfig.py
index 375b8c8..5452d50 100644
--- a/examples/menuconfig.py
+++ b/examples/menuconfig.py
@@ -218,8 +218,8 @@ def node_str(node):
def print_menuconfig_nodes(node, indent):
"""
- Prints a tree with all the menu entries rooted at node. Child menu entries
- are indented.
+ Prints a tree with all the menu entries rooted at 'node'. Child menu
+ entries are indented.
"""
while node:
string = node_str(node)