From e597db83b75e57535321e7407ede9835c298584d Mon Sep 17 00:00:00 2001 From: Jjp137 Date: Tue, 23 Apr 2019 00:37:21 -0700 Subject: [PATCH] tables: fix link (#11090) [ci skip] --- lib/pure/collections/tables.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/collections/tables.nim b/lib/pure/collections/tables.nim index c6d5cc9e28..2da2baa48d 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`_ +## For `ref semantics`_ ## use their ``Ref`` variants: `TableRef<#TableRef>`_, ## `OrderedTableRef<#OrderedTableRef>`_, and `CountTableRef<#CountTableRef>`_. ##