diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/map.gleam | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gleam/map.gleam b/src/gleam/map.gleam index 58afd8c..6c25a7c 100644 --- a/src/gleam/map.gleam +++ b/src/gleam/map.gleam @@ -19,10 +19,7 @@ if javascript { /// See [the Erlang map module](https://erlang.org/doc/man/maps.html) for more /// information. /// -pub external type Map( - key, - value, -) +pub external type Map(key, value) /// Determines the number of key-value pairs in the map. /// This function runs in constant time and does not need to iterate the map. |