summaryrefslogtreecommitdiff
path: root/frozendict/__init__.py
diff options
context:
space:
mode:
authorSantiago Lezica <slezica89@gmail.com>2016-10-06 15:52:42 +0200
committerGitHub <noreply@github.com>2016-10-06 15:52:42 +0200
commit7e078bf084ee734367dde8db2c8a2f00ec37375f (patch)
treed4158840f32e4c06638875614a97208a89eb07a1 /frozendict/__init__.py
parente36a14126bde0dbdce7ebff47862a51874b71976 (diff)
parentc69a24d400a67f77292eb0892b4a8ed6048966a4 (diff)
Merge pull request #12 from lurch/patch-1
docstring correction
Diffstat (limited to 'frozendict/__init__.py')
-rw-r--r--frozendict/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/frozendict/__init__.py b/frozendict/__init__.py
index 7ca64ea..399948a 100644
--- a/frozendict/__init__.py
+++ b/frozendict/__init__.py
@@ -16,7 +16,7 @@ iteritems = getattr(dict, 'iteritems', dict.items) # py2-3 compatibility
class frozendict(collections.Mapping):
"""
An immutable wrapper around dictionaries that implements the complete :py:class:`collections.Mapping`
- interface. It can be used as a drop-in replacement for dictionaries where immutability and ordering are desired.
+ interface. It can be used as a drop-in replacement for dictionaries where immutability is desired.
"""
dict_cls = dict
@@ -54,7 +54,7 @@ class frozendict(collections.Mapping):
class FrozenOrderedDict(frozendict):
"""
- A FrozenDict subclass that maintains key order
+ A frozendict subclass that maintains key order
"""
dict_cls = OrderedDict