summaryrefslogtreecommitdiff
path: root/kconfiglib.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2012-12-17 19:28:37 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2012-12-17 19:28:37 +0100
commitb6f62d6f7db1e16b42bf0e5e3c6f5a0d1a3b04df (patch)
tree243a778b27675876ad82a8370db06adfe8999e06 /kconfiglib.py
parent4d6c81123d5050b577ab22e550fee2b39fb23f46 (diff)
Fix comment re. fast path.
Diffstat (limited to 'kconfiglib.py')
-rw-r--r--kconfiglib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 2b65ee1..ee6f20d 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -720,8 +720,8 @@ class Config():
i += 1
append(value)
else:
- # Fast path: If the rest of the string contains no backslashes
- # (almost always) we can simply look for the matching quote.
+ # Fast path: If the string contains no backslashes (almost
+ # always) we can simply look for the matching quote.
end = s.find(quote, i)
if end == -1:
_tokenization_error(s, strlen, filename, linenr)