From 10430ad7aace46c93939341817b97df48951d5a2 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 26 Sep 2009 20:59:11 +0000 Subject: [PATCH] fix default value --- Doc/library/string.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/string.rst b/Doc/library/string.rst index d3789d40f2c..98ede20f75e 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -565,7 +565,7 @@ rule: Helper functions ---------------- -.. function:: capwords(s, sep=' ') +.. function:: capwords(s, sep=None) Split the argument into words using :meth:`str.split`, capitalize each word using :meth:`str.capitalize`, and join the capitalized words using