Repair typo in docstring.
diff --git a/Lib/difflib.py b/Lib/difflib.py
index e82c703..7cd5197 100644
--- a/Lib/difflib.py
+++ b/Lib/difflib.py
@@ -600,7 +600,7 @@
         """Return a measure of the sequences' similarity (float in [0,1]).
 
         Where T is the total number of elements in both sequences, and
-        M is the number of matches, this is 2,0*M / T.
+        M is the number of matches, this is 2.0*M / T.
         Note that this is 1 if the sequences are identical, and 0 if
         they have nothing in common.