From: Larry Hastings Date: Fri, 14 Aug 2015 15:03:30 +0000 (-0700) Subject: One-character typo fix. X-Git-Tag: v3.6.0a1~1743^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=721b9aab10a4c4f95c3fba08af24337efe63384c;p=python One-character typo fix. os.path.commonprefix always returns a valid *path*, not a valid *patch*. --- diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index a9741302e9..11f871b786 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -729,7 +729,7 @@ os.path * New :func:`~os.path.commonpath` function that extracts common path prefix. Unlike the :func:`~os.path.commonprefix` function, it always returns a valid - patch. (Contributed by Rafik Draoui and Serhiy Storchaka in :issue:`10395`.) + path. (Contributed by Rafik Draoui and Serhiy Storchaka in :issue:`10395`.) pickle ------