diff options
author | Nan Xiao <nan@chinadtrace.org> | 2022-04-02 01:29:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 13:29:15 -0400 |
commit | a7024f49afe5623ce90a800986dea7447e249d3b (patch) | |
tree | 07d1ee417bc8c7a9207f75d886ee0190993e945f | |
parent | 1275763284d540c0e8ad53b3c27e52743ee08f2b (diff) | |
download | Nim-a7024f49afe5623ce90a800986dea7447e249d3b.tar.gz |
fix 19655 - fixing more url fragments (#19669)
-rw-r--r-- | lib/pure/parseopt.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/parseopt.nim b/lib/pure/parseopt.nim index aff9312f9..71deaa535 100644 --- a/lib/pure/parseopt.nim +++ b/lib/pure/parseopt.nim @@ -203,7 +203,7 @@ proc initOptParser*(cmdline = "", shortNoVal: set[char] = {}, ## ## `shortNoVal` and `longNoVal` are used to specify which options ## do not take values. See the `documentation about these - ## parameters<#shortnoval-and-longnoval>`_ for more information on + ## parameters<#nimshortnoval-and-nimlongnoval>`_ for more information on ## how this affects parsing. ## ## See also: @@ -465,7 +465,7 @@ iterator getopt*(cmdline: seq[string] = @[], ## ## `shortNoVal` and `longNoVal` are used to specify which options ## do not take values. See the `documentation about these - ## parameters<#shortnoval-and-longnoval>`_ for more information on + ## parameters<#nimshortnoval-and-nimlongnoval>`_ for more information on ## how this affects parsing. ## ## There is no need to check for `cmdEnd` while iterating. |