From faee043389b9c332bbe5c2415000b14144b28fd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Fri, 9 Nov 2018 08:45:56 -0300 Subject: [PATCH] Update collections.rst --- Doc/library/collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 6b9d85abaae726..bfbf8a7ecc070c 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -225,7 +225,7 @@ For example:: .. class:: Counter([iterable-or-mapping]) A :class:`Counter` is a :class:`dict` subclass for counting hashable objects. - It is an unordered collection where elements are stored as dictionary keys + It is a collection where elements are stored as dictionary keys and their counts are stored as dictionary values. Counts are allowed to be any integer value including zero or negative counts. The :class:`Counter` class is similar to bags or multisets in other languages.