summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2015-06-04 21:04:44 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2015-06-04 21:04:44 +0200
commit9eccea76ae5db2e5184ba24ef92f9f6cf4a9cd8f (patch)
treea6ee2ec8ba6842d967b3fabe4ef98b58388db1b1
parent890c39aca8ac2f3932d61c59a2a186dbe12a0c44 (diff)
Documentation nit.
-rw-r--r--kconfiglib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 367de07..a2c072d 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -3729,7 +3729,7 @@ def _get_lines(filename):
return lines
def _clean_up_path(path):
- """Strips any initial "./" and trailing slash from 'path'."""
+ """Strips an initial "./" and any trailing slashes from 'path'."""
if path.startswith("./"):
path = path[2:]
return path.rstrip("/")