aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gleam/map.gleam5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gleam/map.gleam b/src/gleam/map.gleam
index 6c25a7c..58afd8c 100644
--- a/src/gleam/map.gleam
+++ b/src/gleam/map.gleam
@@ -19,7 +19,10 @@ 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.