diff options
Diffstat (limited to 'Lib/string.py')
-rw-r--r-- | Lib/string.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/string.py b/Lib/string.py index 21781e7..6570fef 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -116,7 +116,7 @@ def join(words, sep = ' '): """join(list [,sep]) -> string Return a string composed of the words in list, with - intervening occurences of sep. The default separator is a + intervening occurrences of sep. The default separator is a single space. (joinfields and join are synonymous) |