diff --git a/src/content/docs/workflows/build/workers-api.mdx b/src/content/docs/workflows/build/workers-api.mdx index 2768919ae556629..0355e3b9e4e8c3c 100644 --- a/src/content/docs/workflows/build/workers-api.mdx +++ b/src/content/docs/workflows/build/workers-api.mdx @@ -45,7 +45,7 @@ export class MyWorkflow extends WorkflowEntrypoint { The `WorkflowEvent` type accepts an optional [type parameter](https://www.typescriptlang.org/docs/handbook/2/generics.html#working-with-generic-type-variables) that allows you to provide a type for the `payload` property within the `WorkflowEvent`. -Refer to the [events and parameters](/workflows/build/events-and-parameters/) documentation for how to handle events within yur Workflow code. +Refer to the [events and parameters](/workflows/build/events-and-parameters/) documentation for how to handle events within your Workflow code. ## WorkflowEvent @@ -63,7 +63,7 @@ export type WorkflowEvent = { * `timestamp` - a `Date` object set to the time the Workflow instance was created (triggered). * `instanceId` - the ID of the associated instance. -Refer to the [events and parameters](/workflows/build/events-and-parameters/) documentation for how to handle events within yur Workflow code. +Refer to the [events and parameters](/workflows/build/events-and-parameters/) documentation for how to handle events within your Workflow code. ## WorkflowStep