diff options
author | ee7 <45465154+ee7@users.noreply.github.com> | 2020-12-09 12:11:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 12:11:16 +0100 |
commit | 6f57ebae349f073d696761fbba6d3f24f4b3dde9 (patch) | |
tree | fc8fc759f3588d7a1fb79173998c1cb414c53731 /lib/pure/collections/sets.nim | |
parent | c43dca29013127c29578a241881d23d49c37231f (diff) | |
download | Nim-6f57ebae349f073d696761fbba6d3f24f4b3dde9.tar.gz |
sequtils.nim: Use `func` (#16293)
* sequtils.nim: proc -> func * sequtils.nim: proc -> func in links * sequtils.nim: proc -> func in non-link doc comments * test: add `sequtils` to strictFuncs test
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 18f91f516..faa2f8c71 100644 --- a/lib/pure/collections/sets.nim +++ b/lib/pure/collections/sets.nim @@ -16,7 +16,7 @@ ## ## Common usages of sets: ## * removing duplicates from a container by converting it with `toHashSet proc -## <#toHashSet,openArray[A]>`_ (see also `sequtils.deduplicate proc +## <#toHashSet,openArray[A]>`_ (see also `sequtils.deduplicate func ## <sequtils.html#deduplicate,openArray[T],bool>`_) ## * membership testing ## * mathematical operations on two sets, such as |