summary refs log tree commit diff stats
path: root/lib/pure/collections/sets.nim
diff options
context:
space:
mode:
authorAnthony Dario <AnthonyDario@users.noreply.github.com>2022-05-06 02:16:00 -0700
committerGitHub <noreply@github.com>2022-05-06 17:16:00 +0800
commita4401054cc7fbd199a8dfa3ec0f9760ca7498b8e (patch)
tree54bba512b608e13a9d62f934dfb27412e268d4df /lib/pure/collections/sets.nim
parent278ecad973c6581aeea0a6ff9372109b0dd6df5e (diff)
downloadNim-a4401054cc7fbd199a8dfa3ec0f9760ca7498b8e.tar.gz
Fix broken link in sets documentation. (#19769)
Diffstat (limited to 'lib/pure/collections/sets.nim')
-rw-r--r--lib/pure/collections/sets.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/sets.nim b/lib/pure/collections/sets.nim
index 7b1c58ac8..114e4582a 100644
--- a/lib/pure/collections/sets.nim
+++ b/lib/pure/collections/sets.nim
@@ -61,7 +61,7 @@ type
   HashSet*[A] {.myShallow.} = object ## \
     ## A generic hash set.
     ##
-    ## Use `init proc <#init,HashSet[A]>`_ or `initHashSet proc <#initHashSet,int>`_
+    ## Use `init proc <#init,HashSet[A]>`_ or `initHashSet proc <#initHashSet>`_
     ## before calling other procs on it.
     data: KeyValuePairSeq[A]
     counter: int