aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {