summaryrefslogtreecommitdiff
path: root/Lib/os.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-03-30 11:54:05 +0200
committerVictor Stinner <victor.stinner@gmail.com>2015-03-30 11:54:05 +0200
commit5fdde71cce866ae52f5abd7ee825f0e2fd6fd2f8 (patch)
treed5ee6332f4c768c23944c69273d7b64766d5fbe1 /Lib/os.py
parent81c6df5c0fa046eea1a9fe971fe72ad03b0bf9b3 (diff)
downloadcpython-git-5fdde71cce866ae52f5abd7ee825f0e2fd6fd2f8.tar.gz
Issue #23605: Fix typo in an os.walk() comment
Thanks Ben Hoyt for the report.
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/os.py b/Lib/os.py
index e5934dad1d..90beab9b74 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -402,7 +402,7 @@ def walk(top, topdown=True, onerror=None, followlinks=False):
is_symlink = entry.is_symlink()
except OSError:
# If is_symlink() raises an OSError, consider that the
- # entry is not a symbolik link, same behaviour than
+ # entry is not a symbolic link, same behaviour than
# os.path.islink().
is_symlink = False
walk_into = not is_symlink