'Wrong type for Map.fold in doc'
type of fold in https://ligolang.org/docs/reference/map-reference is wrong
val fold : ('accumulator -> ('key * 'value) -> 'accumulator) -> ('key, 'value) map -> 'accumulator -> 'accumulator
should be
val fold : ('accumulator * ('key * 'value)) -> 'accumulator) -> ('key, 'value) map -> 'accumulator -> 'accumulator
-- migt be worth checking map as well --
Edited by Rémi