diff options
author | Simon Ruderich <simon@ruderich.org> | 2016-09-15 04:18:42 +0200 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2016-09-15 04:20:24 +0200 |
commit | af2b0aed06236beddbece65df10a95cc38e37184 (patch) | |
tree | 26eb6f54a7fd4108fc3cb924e9af5b240d5ce74c /lib/pure | |
parent | 4f1886621eea509e1a907fcdf5a660bf0309c2ce (diff) | |
download | Nim-af2b0aed06236beddbece65df10a95cc38e37184.tar.gz |
algorithm: sort: fix link in documentation
Diffstat (limited to 'lib/pure')
-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 b83daf245..739cdc16b 100644 --- a/lib/pure/algorithm.nim +++ b/lib/pure/algorithm.nim @@ -179,7 +179,7 @@ proc sort*[T](a: var openArray[T], ## sort(myStrArray, system.cmp) ## ## You can inline adhoc comparison procs with the `do notation - ## <manual.html#do-notation>`_. Example: + ## <manual.html#procedures-do-notation>`_. Example: ## ## .. code-block:: nim ## |