From 5fdde71cce866ae52f5abd7ee825f0e2fd6fd2f8 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 30 Mar 2015 11:54:05 +0200 Subject: [PATCH] Issue #23605: Fix typo in an os.walk() comment Thanks Ben Hoyt for the report. --- Lib/os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/os.py b/Lib/os.py index e5934dad1de..90beab9b74c 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