aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWesley Moore <wes@wezm.net>2024-02-25 10:31:39 +1000
committerLouis Pilfold <louis@lpil.uk>2024-02-26 20:51:34 +0000
commit55e5db2edb053c5b8bdb72fcaad33486efb52e30 (patch)
tree814e26ef2e4597f3e44028e9b5997dae64e5f069
parentafe7bf769a2c6077233ec2dbdcaf467fcaf82d1d (diff)
downloadgleam_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.gleam2
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) {