Fix typo in mergedicts_copy docstring

This commit is contained in:
ZyX 2014-08-29 18:40:43 +04:00
parent 8fb09bd8b3
commit af10fa1e80
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ def mergedicts_copy(d1, d2):
'''Recursively merge two dictionaries.
Dictionaries are not modified. Copying happens only if necessary. Assumes
that first dictionary support .copy() method.
that first dictionary supports .copy() method.
'''
ret = d1.copy()
for k in d2: