Update example: Counter.subtract returns None, not self
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 57e0481..f63a853 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -121,6 +121,7 @@
             >>> c = Counter(a=4, b=2, c=0, d=-2)
             >>> d = Counter(a=1, b=2, c=3, d=4)
             >>> c.subtract(d)
+            >>> c
             Counter({'a': 3, 'b': 0, 'c': -3, 'd': -6})
 
       .. versionadded:: 3.2