diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-11-26 11:54:18 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-26 11:54:18 -0800 |
commit | 13b1b19a83000743df3c844a34652e7ad0d308f5 (patch) | |
tree | 335ebae16386b1aacd4f027b29f005415587e683 /tools/kochdocs.nim | |
parent | 70a1c4254230eb8f3c4d24ccbc253c0a28065d03 (diff) | |
download | Nim-13b1b19a83000743df3c844a34652e7ad0d308f5.tar.gz |
remove all mentions of doc2, jsondoc2 (except 1 mentioning the alias) (#15683)
Diffstat (limited to 'tools/kochdocs.nim')
-rw-r--r-- | tools/kochdocs.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/kochdocs.nim b/tools/kochdocs.nim index 81ab265f2..0cfedce47 100644 --- a/tools/kochdocs.nim +++ b/tools/kochdocs.nim @@ -265,7 +265,7 @@ proc buildDoc(nimArgs, destPath: string) = [extra, nimArgs2, gitUrl, destPath, d] i.inc for d in items(withoutIndex): - commands[i] = nim & " doc2 $# --git.url:$# -o:$# $#" % + commands[i] = nim & " doc $# --git.url:$# -o:$# $#" % [nimArgs, gitUrl, destPath / changeFileExt(splitFile(d).name, "html"), d] i.inc |