From cb4993b5009f2d7f71c3cf1f312cac5b4f628953 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Tue, 21 Feb 2023 17:50:25 +0100 Subject: [PATCH] Fix typo. Co-Authored-By: Giovanni Totaro - aka Vanni --- README.md | 4 ++-- benedict/dicts/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 62404d3..0f672b6 100644 --- a/README.md +++ b/README.md @@ -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) ``` diff --git a/benedict/dicts/__init__.py b/benedict/dicts/__init__.py index 8fefd3c..ac13703 100644 --- a/benedict/dicts/__init__.py +++ b/benedict/dicts/__init__.py @@ -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)