Skip to content

Commit ab871af

Browse files
committed
v1.3.4 - fix return type for merge in README
1 parent fe997ab commit ab871af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $ pip install mergedeep
2020
## Usage
2121

2222
```text
23-
merge(destination: MutableMapping, *sources: Mapping, strategy: Strategy = Strategy.REPLACE) -> Mapping
23+
merge(destination: MutableMapping, *sources: Mapping, strategy: Strategy = Strategy.REPLACE) -> MutableMapping
2424
```
2525

2626
Deep merge without mutating the source dicts.

docs/source/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ $ pip install mergedeep
3232
## Usage
3333

3434
```text
35-
merge(destination: MutableMapping, *sources: Mapping, strategy: Strategy = Strategy.REPLACE) -> Mapping
35+
merge(destination: MutableMapping, *sources: Mapping, strategy: Strategy = Strategy.REPLACE) -> MutableMapping
3636
```
3737

3838
Deep merge without mutating the source dicts.

mergedeep/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.3.3"
1+
__version__ = "1.3.4"
22

33
from mergedeep.mergedeep import merge, Strategy
44

0 commit comments

Comments
 (0)