system: fix link in delete proc (#17550)

The `delete` proc had a "See also" link that linked to itself.
This commit is contained in:
ee7
2021-03-28 12:44:16 +02:00
committed by GitHub
parent c86fdfa1ee
commit eb3ed44009

View File

@@ -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]