resetwarnings():  Remove extra space from docstring guts.
diff --git a/Lib/warnings.py b/Lib/warnings.py
index c3c9eca..435f1a7 100644
--- a/Lib/warnings.py
+++ b/Lib/warnings.py
@@ -139,7 +139,7 @@
         filters.insert(0, item)
 
 def resetwarnings():
-    """Clear the list of warning filters, so that  no filters are active."""
+    """Clear the list of warning filters, so that no filters are active."""
     filters[:] = []
 
 class _OptionError(Exception):