diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2024-01-22 16:45:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 16:45:56 +0800 |
commit | 301822e18938ad2dc543f2b7dc0a0f5e2d0870a2 (patch) | |
tree | ac7c29e7b05a1ce96463098a8eb6a65d44c9989e /lib/pure/algorithm.nim | |
parent | 83f2708909e0c59b84f61c2721907ff896285dce (diff) | |
download | Nim-301822e18938ad2dc543f2b7dc0a0f5e2d0870a2.tar.gz |
fixes a broken link in `std/algorithm` (#23246)
https://nim-lang.github.io/Nim/manual.html#procedures-do-notation
Diffstat (limited to 'lib/pure/algorithm.nim')
-rw-r--r-- | lib/pure/algorithm.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/algorithm.nim b/lib/pure/algorithm.nim index 65402e9fb..b12ed7cdd 100644 --- a/lib/pure/algorithm.nim +++ b/lib/pure/algorithm.nim @@ -387,7 +387,7 @@ func sort*[T](a: var openArray[T], ## ``` ## ## You can inline adhoc comparison procs with the `do notation - ## <manual_experimental.html#do-notation>`_. Example: + ## <manual.html#procedures-do-notation>`_. Example: ## ## ```nim ## people.sort do (x, y: Person) -> int: |