diff options
author | Anthony Dario <AnthonyDario@users.noreply.github.com> | 2022-05-06 02:16:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-06 17:16:00 +0800 |
commit | a4401054cc7fbd199a8dfa3ec0f9760ca7498b8e (patch) | |
tree | 54bba512b608e13a9d62f934dfb27412e268d4df /lib/pure/collections/sets.nim | |
parent | 278ecad973c6581aeea0a6ff9372109b0dd6df5e (diff) | |
download | Nim-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.nim | 2 |
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 |