summary refs log tree commit diff stats
diff options
context:
space:
mode:
authoree7 <45465154+ee7@users.noreply.github.com>2021-03-28 12:44:16 +0200
committerGitHub <noreply@github.com>2021-03-28 12:44:16 +0200
commiteb3ed44009fdfea3e67608b68a049c265124d643 (patch)
tree8798469acc14a84fd33ae810befa05e4622310ad
parentc86fdfa1ee2cbba201b0a6182212ced5e218dc65 (diff)
downloadNim-eb3ed44009fdfea3e67608b68a049c265124d643.tar.gz
system: fix link in `delete` proc (#17550)
The `delete` proc had a "See also" link that linked to itself.
-rw-r--r--lib/system.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 4c31f20a2..27f976119 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -1321,7 +1321,7 @@ proc delete*[T](x: var seq[T], i: Natural) {.noSideEffect.} =
   ## This is an `O(n)` operation.
   ##
   ## See also:
-  ## * `del <#delete,seq[T],Natural>`_ for O(1) operation
+  ## * `del <#del,seq[T],Natural>`_ for O(1) operation
   ##
   ## .. code-block:: Nim
   ##  var i = @[1, 2, 3, 4, 5]