summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJjp137 <Jjp137@users.noreply.github.com>2019-04-23 00:37:21 -0700
committerMiran <narimiran@disroot.org>2019-04-23 09:37:21 +0200
commite597db83b75e57535321e7407ede9835c298584d (patch)
tree69c58434fd395d143fa9ab454008d5df86d82300
parent3b4952da94ec3e9bdb40e092888f966c3e2b5fb3 (diff)
downloadNim-e597db83b75e57535321e7407ede9835c298584d.tar.gz
tables: fix link (#11090) [ci skip]
-rw-r--r--lib/pure/collections/tables.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim
index c6d5cc9e2..2da2baa48 100644
--- a/lib/pure/collections/tables.nim
+++ b/lib/pure/collections/tables.nim
@@ -19,7 +19,7 @@
 ## For consistency with every other data type in Nim these have **value**
 ## semantics, this means that ``=`` performs a copy of the hash table.
 ##
-## For `ref semantics<manual.html#types-ref-and-pointer-types>`_
+## For `ref semantics<manual.html#types-reference-and-pointer-types>`_
 ## use their ``Ref`` variants: `TableRef<#TableRef>`_,
 ## `OrderedTableRef<#OrderedTableRef>`_, and `CountTableRef<#CountTableRef>`_.
 ##