diff options
author | inoas <mail@inoas.com> | 2022-10-10 12:03:21 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-10-10 19:42:33 +0100 |
commit | fe6271001fe8d7458a284bfb5cc8ac2cdf6d93b3 (patch) | |
tree | 6b441a57b5d0be1836679d1ebaca621018694f78 | |
parent | 3e8a8f8ae758eb33026d1633ee9c95d10131c03b (diff) | |
download | gleam_stdlib-fe6271001fe8d7458a284bfb5cc8ac2cdf6d93b3.tar.gz gleam_stdlib-fe6271001fe8d7458a284bfb5cc8ac2cdf6d93b3.zip |
gleam format on gleam nightly
-rw-r--r-- | src/gleam/map.gleam | 5 |
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. |