remove spurious dot from string formatting example; thanks to Anthon van der Neut from docs@
diff --git a/Doc/library/string.rst b/Doc/library/string.rst
index 56a2a34..1f8e230 100644
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -583,7 +583,7 @@
 
    >>> points = 19
    >>> total = 22
-   >>> 'Correct answers: {:.2%}.'.format(points/total)
+   >>> 'Correct answers: {:.2%}'.format(points/total)
    'Correct answers: 86.36%'
 
 Using type-specific formatting::