Skip to content

Commit 907da38

Browse files
chore: sync code snippets via snipsync
1 parent 2755a75 commit 907da38

9 files changed

Lines changed: 8 additions & 9 deletions

File tree

docs/develop/rust/activities/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ import * as Components from '@site/src/components';
2020

2121
- [Activity basics](/develop/rust/activities/basics)
2222
- [Activity execution](/develop/rust/activities/execution)
23-
- [Timeouts](/develop/rust/activities/timeouts)
23+
- [Timeouts](/develop/rust/activities/timeouts)

docs/develop/rust/client/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ import * as Components from '@site/src/components';
1818

1919
## Temporal Client
2020

21-
- [Temporal Client](/develop/rust/client/temporal-client)
21+
- [Temporal Client](/develop/rust/client/temporal-client)

docs/develop/rust/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ Once your local Temporal Service is set up, continue building with the following
6363

6464
### Get Connected with the Temporal TypeScript Community
6565

66-
- [Temporal Rust Community Slack](https://temporalio.slack.com/archives/C08G723SFNZ/p1773935454727179)
66+
- [Temporal Rust Community Slack](https://temporalio.slack.com/archives/C08G723SFNZ/p1773935454727179)

docs/develop/rust/nexus/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ import * as Components from '@site/src/components';
1818

1919
## Temporal Nexus
2020

21-
- [Feature guide](/develop/rust/nexus/feature-guide)
21+
- [Feature guide](/develop/rust/nexus/feature-guide)

docs/develop/rust/workers/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ import * as Components from '@site/src/components';
1818

1919
## Workers
2020

21-
- [Worker processes](/develop/rust/workers/worker-process)
21+
- [Worker processes](/develop/rust/workers/worker-process)

docs/develop/rust/workers/worker-process.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ let worker_options = WorkerOptions::new("my-task-queue")
6666
.register_activities(MyActivities)
6767
.register_workflow::<GreetingsWorkflow>()
6868
.build();
69-
```
69+
```

docs/develop/rust/workflows/cancellation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,4 +233,4 @@ Monitor the new Workflow Execution after resetting to ensure it completes succes
233233

234234
</TabItem>
235235

236-
</Tabs>
236+
</Tabs>

docs/develop/rust/workflows/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ import * as Components from '@site/src/components';
2424
- [Message passing](/develop/rust/workflows/message-passing)
2525
- [Cancellation](/develop/rust/workflows/cancellation)
2626
- [Timers](/develop/rust/workflows/timers)
27-
- [Timeouts](/develop/rust/workflows/timeouts)
27+
- [Timeouts](/develop/rust/workflows/timeouts)

docs/develop/typescript/integrations/ai-sdk.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ from the tool function. The following is an example of an Activity that gets the
164164
export async function getWeather(input: {
165165
location: string;
166166
}): Promise<{ city: string; temperatureRange: string; conditions: string }> {
167-
console.log('Activity execution');
168167
return {
169168
city: input.location,
170169
temperatureRange: '14-20C',

0 commit comments

Comments
 (0)