summaryrefslogtreecommitdiff
path: root/django/utils/datastructures.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-02-16 05:15:09 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-02-16 05:15:09 +0000
commit8b3f36029fba65e41403b890d92024e962d68fcf (patch)
tree5fa97e8306be0605d74ab63c3f6e21c92d7c26fc /django/utils/datastructures.py
parentb893eb4d7a8f11daf0931bc3c66ebd3937c707f4 (diff)
downloaddjango-8b3f36029fba65e41403b890d92024e962d68fcf.tar.gz
Made a bunch of small doc rewordings from changes over the past couple of weeks
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7122 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/utils/datastructures.py')
-rw-r--r--django/utils/datastructures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/datastructures.py b/django/utils/datastructures.py
index 82d914000f..f46b57c151 100644
--- a/django/utils/datastructures.py
+++ b/django/utils/datastructures.py
@@ -3,7 +3,7 @@ class MergeDict(object):
A simple class for creating new "virtual" dictionaries that actually look
up values in more than one dictionary, passed in the constructor.
- If a key appears in more than one of the passed in dictionaries, only the
+ If a key appears in more than one of the given dictionaries, only the
first occurrence will be used.
"""
def __init__(self, *dicts):