Skip to content

Commit 1f7dbe6

Browse files
committed
chore: Fix typo in README
1 parent 7b9f3f8 commit 1f7dbe6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ The `options` argument is a superset of the options defined for [object-hash](ht
101101
const map2 = new DeepMap([[1, b]], { mapValueTransformer });
102102
map1.equals(map2); // true
103103

104-
[...map1.entries()]; // [[1, { val: 1, other: 2 }]]
104+
[...map1.entries()]; // [[1, { val: 1, other: 1 }]]
105+
[...map2.entries()]; // [[1, { val: 1, other: 2 }]]
105106
```
106107
107108
- `useToJsonTransform` - if true, only use JSON-serializable properties when computing hashes, equality, etc. (default: false)

0 commit comments

Comments
 (0)