Fix typo.

Co-Authored-By: Giovanni Totaro - aka Vanni <vanni.totaro@gmail.com>
This commit is contained in:
Fabio Caccamo 2023-02-21 17:50:25 +01:00
parent 1280a8164d
commit cb4993b500
2 changed files with 4 additions and 4 deletions

View File

@ -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)
```

View File

@ -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)