Skip to content

Commit 5c48d2b

Browse files
committed
Fix comparison to dmap
1 parent 64e1849 commit 5c48d2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ However, its maps aren't Patricia trees. They are binary trees build using a
306306
Another difference is that the type of values in the map is independent of the type of the keys,
307307
allowing keys to be associated with different values in different maps. i.e.
308308
we map `'a key` to any `('a, 'b) value` type, whereas dmap only maps `'a key`
309-
to `'a`.
309+
to `'a` or `'a value`.
310310

311311
`dmap` also works with OCaml `>= 4.12`, whereas we require OCaml `>= 4.14`.
312312

index.mld

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ However, its maps aren't Patricia trees. They are binary trees build using a
304304
Another difference is that the type of values in the map is independent from the
305305
type of the keys, allowing keys to be associated with different values in different maps.
306306
i.e. we map ['a key] to any [('a, 'b) value] type, whereas dmap only maps ['a key]
307-
to ['a].
307+
to ['a] or ['a value].
308308

309309
[dmap] also works with OCaml [>= 4.12], whereas we require OCaml [>= 4.14].
310310

0 commit comments

Comments
 (0)