diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2017-11-10 08:46:28 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2017-11-10 08:46:28 +0100 |
| commit | 8757ff9ae1d23499ed58ee8ea6f1fb578603d2c7 (patch) | |
| tree | 92bf5406143916bdfcb207efabed6912e2881873 /examples | |
| parent | 5c2a3458a51a78665adbebd3ce64d2ea0f95718d (diff) | |
Fix a few typos
Clean up some formatting a bit too.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/find_symbol.py | 4 | ||||
| -rw-r--r-- | examples/menuconfig.py | 4 |
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) |
