Fix typo in mergedicts_copy docstring
This commit is contained in:
parent
8fb09bd8b3
commit
af10fa1e80
|
@ -44,7 +44,7 @@ def mergedicts_copy(d1, d2):
|
||||||
'''Recursively merge two dictionaries.
|
'''Recursively merge two dictionaries.
|
||||||
|
|
||||||
Dictionaries are not modified. Copying happens only if necessary. Assumes
|
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()
|
ret = d1.copy()
|
||||||
for k in d2:
|
for k in d2:
|
||||||
|
|
Loading…
Reference in New Issue