Skip to content

Commit e1b2d80

Browse files
committed
Fix exceptions -> exception forwarding, point to new api routes
1 parent 83374fc commit e1b2d80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

createDummyPages.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ let childProcess = require('child_process')
44
let blogPostBase = 'https://reasonml.org/blog'
55
let rescriptBase = 'https://rescript-lang.org'
66
let manualBase = `${rescriptBase}/docs/manual/latest`
7-
let apiBase = `${rescriptBase}/apis/latest`
7+
let apiBase = `${rescriptBase}/docs/manual/latest/api`
88

99
let docLanguages = [
1010
'en',
@@ -67,8 +67,8 @@ let docPages = {
6767
'ecosystem/index.html': `${rescriptBase}/docs/manual/latest/libraries`,
6868
'embed-raw-javascript.html': `${rescriptBase}/docs/manual/latest/embed-raw-javascript`,
6969
'embed-raw-javascript/index.html': `${rescriptBase}/docs/manual/latest/embed-raw-javascript`,
70-
'exceptions.html': `${rescriptBase}/docs/manual/latest/exceptions`,
71-
'exceptions/index.html': `${rescriptBase}/docs/manual/latest/exceptions`,
70+
'exceptions.html': `${rescriptBase}/docs/manual/latest/exception`,
71+
'exceptions/index.html': `${rescriptBase}/docs/manual/latest/exception`,
7272
'extended-compiler-options.html': `${rescriptBase}/docs/manual/latest/introduction`,
7373
'extended-compiler-options/index.html': `${rescriptBase}/docs/manual/latest/introduction`,
7474
'function.html': `${rescriptBase}/docs/manual/latest/function`,

0 commit comments

Comments
 (0)