Fix typo.
Co-Authored-By: Giovanni Totaro - aka Vanni <vanni.totaro@gmail.com>
This commit is contained in:
parent
1280a8164d
commit
cb4993b500
|
@ -346,9 +346,9 @@ m = d.match(pattern, indexes=True)
|
|||
|
||||
```python
|
||||
# Merge one or more dictionary objects into current instance (deepupdate).
|
||||
# Sub-dictionaries keys will be merged toghether.
|
||||
# Sub-dictionaries keys will be merged together.
|
||||
# If overwrite is False, existing values will not be overwritten.
|
||||
# If concat is True, list values will be concatenated toghether.
|
||||
# If concat is True, list values will be concatenated together.
|
||||
d.merge(a, b, c, overwrite=True, concat=False)
|
||||
```
|
||||
|
||||
|
|
|
@ -191,9 +191,9 @@ class benedict(KeypathDict, IODict, ParseDict):
|
|||
def merge(self, other, *args, **kwargs):
|
||||
"""
|
||||
Merge one or more dict objects into current instance (deepupdate).
|
||||
Sub-dictionaries will be merged toghether.
|
||||
Sub-dictionaries will be merged together.
|
||||
If overwrite is False, existing values will not be overwritten.
|
||||
If concat is True, list values will be concatenated toghether.
|
||||
If concat is True, list values will be concatenated together.
|
||||
"""
|
||||
_merge(self, other, *args, **kwargs)
|
||||
|
||||
|
|
Loading…
Reference in New Issue