summaryrefslogtreecommitdiff
path: root/tools/docs.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-03-17 14:32:21 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-03-18 14:07:24 -0400
commit52b7cc5499061bb79708a0db92bf9b2d0828f3c3 (patch)
tree6752705be8fbea0967f6d1fa76862b161657c5d5 /tools/docs.py
parent22f791c26caca980305bd74692de020d900cfff0 (diff)
Fix entry point for tools/docs.py
Diffstat (limited to 'tools/docs.py')
-rwxr-xr-xtools/docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docs.py b/tools/docs.py
index dc6a7f9e8..147b76fcc 100755
--- a/tools/docs.py
+++ b/tools/docs.py
@@ -19,7 +19,7 @@ os.chdir(os.path.join(target_path, "debug/gen/lib/"))
# TODO Replace typedoc with something else ASAP. It's very awful.
run([
"typedoc", "lib.deno_runtime.d.ts", "--out",
- os.path.join(target_path, "typedoc"), "--entryPoint", "\"deno\"",
+ os.path.join(target_path, "typedoc"), "--entryPoint", "Deno",
"--ignoreCompilerErrors", "--includeDeclarations", "--excludeExternals",
"--excludePrivate", "--excludeProtected", "--mode", "file", "--name",
"deno", "--theme", "minimal", "--readme", "none"