summary refs log tree commit diff stats
path: root/doc/docgen.rst
diff options
context:
space:
mode:
authorElliot Waite <elliot@elliotwaite.com>2020-12-14 11:13:12 -0800
committerGitHub <noreply@github.com>2020-12-14 20:13:12 +0100
commitf3d57761abc425f546985af407f178d71db20b78 (patch)
tree36925f3cf4bc1b94fa93c58c969f40be60d462fa /doc/docgen.rst
parente843492b1334ded1d8fcd0e0eb6dc94fcf970aba (diff)
downloadNim-f3d57761abc425f546985af407f178d71db20b78.tar.gz
Fix broken links in docs (#16336)
* Fix broken links in docs

* Fix rand HSlice links
Diffstat (limited to 'doc/docgen.rst')
-rw-r--r--doc/docgen.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/docgen.rst b/doc/docgen.rst
index 612465671..bbf0838bb 100644
--- a/doc/docgen.rst
+++ b/doc/docgen.rst
@@ -316,7 +316,7 @@ symbols in the `system module <system.html>`_.
 * ``proc len[T](x: seq[T]): int {.magic: "LengthSeq", noSideEffect.}`` **=>**
   `#len,seq[T] <system.html#len,seq[T]>`_
 * ``iterator pairs[T](a: seq[T]): tuple[key: int, val: T] {.inline.}`` **=>**
-  `#pairs.i,seq[T] <system.html#pairs.i,seq[T]>`_
+  `#pairs.i,seq[T] <iterators.html#pairs.i,seq[T]>`_
 * ``template newException[](exceptn: typedesc; message: string;
     parentException: ref Exception = nil): untyped`` **=>**
   `#newException.t,typedesc,string,ref.Exception