Skip to content

Commit d16ee04

Browse files
authored
Small fix of links to documentation (#1456)
1 parent fafbccf commit d16ee04

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
- [test-npm-init](#test-npm-init)
1818
- [Style Guide](#style-guide)
1919
- [Publishing](#publishing)
20-
- [Updating the Java test server proto files](#updating-the-java-test-server-proto-files)
20+
- [Updating published packages](#updating-published-packages)
2121

2222
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2323

packages/worker/src/runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ export class Runtime {
591591
`in how it manages its heap memory. There is consequently a high probability that ` +
592592
`the process will crash due to running out of memory. To increase reliability, we recommend ` +
593593
`adding '--max-old-space-size=${suggestedOldSpaceSizeInMb}' to your node arguments. ` +
594-
`Refer to https://docs.temporal.io/dev-guide/typescript/foundations#run-a-worker-on-docker ` +
594+
`Refer to https://docs.temporal.io/develop/typescript/core-application#run-a-worker-on-docker ` +
595595
`for more advice on tuning your Workers.`,
596596
{ sdkComponent: SdkComponent.worker }
597597
);

packages/worker/src/workflow/bundler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ exports.importInterceptors = function importInterceptors() {
271271
if (hasError) {
272272
reject(
273273
new Error(
274-
"Webpack finished with errors, if you're unsure what went wrong, visit our troubleshooting page at https://docs.temporal.io/dev-guide/typescript/debugging#webpack-errors"
274+
"Webpack finished with errors, if you're unsure what went wrong, visit our troubleshooting page at https://docs.temporal.io/develop/typescript/debugging#webpack-errors"
275275
)
276276
);
277277
}

0 commit comments

Comments
 (0)