From 721b9aab10a4c4f95c3fba08af24337efe63384c Mon Sep 17 00:00:00 2001 From: Larry Hastings Date: Fri, 14 Aug 2015 08:03:30 -0700 Subject: [PATCH] One-character typo fix. os.path.commonprefix always returns a valid *path*, not a valid *patch*. --- Doc/whatsnew/3.5.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index a9741302e9f..11f871b786a 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 ------