Skip to content

Commit

Permalink
[fix] stdlib: fix map stringifier
Browse files Browse the repository at this point in the history
  • Loading branch information
RG committed Apr 23, 2013
1 parent 0812637 commit 388b07b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stdlib/core/map/map.opa
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ Map_make(order: order('key,'order) ) : Map =

}} //: Map_make

@stringifier(ordered_map('key, 'val, 'order)) map_to_string(map) =
@stringifier(map('key, 'val)) map_to_string(map) =
tx = Map.fold(key, val, tx ->
Text.insert_right(tx, "{key}") |>
Text.insert_right(_, " => ") |>
Expand Down

0 comments on commit 388b07b

Please sign in to comment.