diff options
author | Wesley Moore <wes@wezm.net> | 2024-02-25 10:31:39 +1000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-02-26 20:51:34 +0000 |
commit | 55e5db2edb053c5b8bdb72fcaad33486efb52e30 (patch) | |
tree | 814e26ef2e4597f3e44028e9b5997dae64e5f069 | |
parent | afe7bf769a2c6077233ec2dbdcaf467fcaf82d1d (diff) | |
download | gleam_stdlib-55e5db2edb053c5b8bdb72fcaad33486efb52e30.tar.gz gleam_stdlib-55e5db2edb053c5b8bdb72fcaad33486efb52e30.zip |
Update reference to gleam/map in Set docs
Map was renamed to Dict in
6139295179325810d53613879613b4181188d56a
-rw-r--r-- | src/gleam/set.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/set.gleam b/src/gleam/set.gleam index 00660a1..240ff06 100644 --- a/src/gleam/set.gleam +++ b/src/gleam/set.gleam @@ -20,7 +20,7 @@ const token = Nil /// A set is a collection of unique members of the same type. /// -/// It is implemented using the `gleam/map` module, so inserts and lookups have +/// It is implemented using the `gleam/dict` module, so inserts and lookups have /// logarithmic time complexity. /// pub opaque type Set(member) { |