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 67547ad..4c3abcd 100644
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -602,7 +602,7 @@
 
    >>> points = 19.5
    >>> total = 22
-   >>> 'Correct answers: {:.2%}.'.format(points/total)
+   >>> 'Correct answers: {:.2%}'.format(points/total)
    'Correct answers: 88.64%'
 
 Using type-specific formatting::