aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2022-10-14 11:09:49 +0100
committerLouis Pilfold <louis@lpil.uk>2022-10-14 11:09:49 +0100
commit91019f9a0b31669b181d1d6aaff4103d5cc424f9 (patch)
tree4a3ccc34a72484be6e0e29246ae1c96700bbf20f
parent64b810dfd8cc0b9d9dcbbc6919e9f8a5f12a8cef (diff)
downloadgleam_stdlib-91019f9a0b31669b181d1d6aaff4103d5cc424f9.tar.gz
gleam_stdlib-91019f9a0b31669b181d1d6aaff4103d5cc424f9.zip
Format
-rw-r--r--src/gleam/map.gleam5
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.