Skip to content

Commit 27cec60

Browse files
vil02pedrosousa
andauthored
[Workflows] Fix typo and replace contraction (#19609)
--------- Co-authored-by: Pedro Sousa <[email protected]>
1 parent 408a4f1 commit 27cec60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/workflows/build/rules-of-workflows.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Otherwise, your entire Workflow might not be as durable as you might think, and
102102
```ts
103103
export class MyWorkflow extends WorkflowEntrypoint {
104104
async run(event: WorkflowEvent<Params>, step: WorkflowStep) {
105-
// 🔴 Bad: you're calling two seperate services from within the same step. This might cause
105+
// 🔴 Bad: you are calling two separate services from within the same step. This might cause
106106
// some extra calls to the first service in case the second one fails, and in some cases, makes
107107
// the step non-idempotent altogether
108108
const image = await step.do("get cutest cat from KV", async () => {

0 commit comments

Comments
 (0)