fix default value
diff --git a/Doc/library/string.rst b/Doc/library/string.rst
index d3789d4..98ede20 100644
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -565,7 +565,7 @@
 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