diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2020-01-12 15:27:01 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2020-01-12 15:28:55 +0100 |
| commit | fa0783115466c35f52b226317cc26903f918a8ce (patch) | |
| tree | 22ad049008ec3f19856e6cc0a58554e97e4f9bc9 /kconfiglib.py | |
| parent | 211914141a81aa7bb50dc3fb96123af902f558d3 (diff) | |
Fix _parse_block() comment re. next pointer
It's not the 'next' attribute of the node that's added that's set, but
the 'next' attribute of the node before it.
Diffstat (limited to 'kconfiglib.py')
| -rw-r--r-- | kconfiglib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 69ee4fd..d491368 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -2895,7 +2895,7 @@ class Kconfig(object): # # prev: # The previous menu node. New nodes will be added after this one (by - # modifying their 'next' pointer). + # modifying 'next' pointers). # # 'prev' is reused to parse a list of child menu nodes (for a menu or # Choice): After parsing the children, the 'next' pointer is assigned |
