aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorinoas <mail@inoas.com>2022-10-10 12:03:21 +0200
committerLouis Pilfold <louis@lpil.uk>2022-10-10 19:42:33 +0100
commitfe6271001fe8d7458a284bfb5cc8ac2cdf6d93b3 (patch)
tree6b441a57b5d0be1836679d1ebaca621018694f78 /src
parent3e8a8f8ae758eb33026d1633ee9c95d10131c03b (diff)
downloadgleam_stdlib-fe6271001fe8d7458a284bfb5cc8ac2cdf6d93b3.tar.gz
gleam_stdlib-fe6271001fe8d7458a284bfb5cc8ac2cdf6d93b3.zip
gleam format on gleam nightly
Diffstat (limited to 'src')
-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.