diff --git a/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md b/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md index c64445393..e663fe58c 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md +++ b/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-features-concepts.md @@ -6,7 +6,7 @@ weight: 2000 description: "Learn more about the Dapr Workflow features and concepts" --- -Now that you've learned about the [workflow building block]({{< ref workflow-overview.md >}}) at a high level, let's deep dive into the features and concepts included with the Dapr Workflow engine and SDKs. Dapr Workflows expose several core features and concepts which are common across all supported languages. +Now that you've learned about the [workflow building block]({{< ref workflow-overview.md >}}) at a high level, let's deep dive into the features and concepts included with the Dapr Workflow engine and SDKs. Dapr Workflow exposes several core features and concepts which are common across all supported languages. ## Workflows @@ -126,7 +126,7 @@ Workflows can also wait for multiple external event signals of the same name, in ## Related links -- [Try out Dapr Workflows using the quickstart]({{< ref workflow-quickstart.md >}}) +- [Try out Dapr Workflow using the quickstart]({{< ref workflow-quickstart.md >}}) - [Workflow overview]({{< ref workflow-overview.md >}}) - [Workflow API reference]({{< ref workflow_api.md >}}) - [Try out the .NET example](https://github.com/dapr/dotnet-sdk/tree/master/examples/Workflow) diff --git a/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-overview.md b/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-overview.md index a3651482d..693e60b84 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-overview.md +++ b/daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-overview.md @@ -10,7 +10,7 @@ description: "Overview of Dapr Workflow" Dapr Workflow is currently in alpha. {{% /alert %}} -Dapr Workflow makes orchestrating the logic required for messaging, state management, and failure handling across various microservices easier for developers. Dapr Workflows enable you to create long running, fault-tolerant, stateful applications. Prior to Dapr workflows you'd often need to build ad-hoc workflows in custom, hard to write code in order to achieve long running, fault-tolerant, stateful applications. +Dapr Workflow makes orchestrating the logic required for messaging, state management, and failure handling across various microservices easier for developers. Dapr Workflow enables you to create long running, fault-tolerant, stateful applications. Prior to Dapr Workflow, you'd often need to build ad-hoc workflows in custom, complex code in order to achieve long running, fault-tolerant, stateful applications. The durable, resilient Dapr Workflow capability: @@ -19,9 +19,9 @@ The durable, resilient Dapr Workflow capability: - Provides HTTP and gRPC APIs for managing workflows (start, query, suspend/resume, terminate) - Integrates with any other workflow runtime via workflow components -Diagram showing basics of Dapr Workflows +Diagram showing basics of Dapr Workflow -Some example scenarios that Dapr Workflows can perform are: +Some example scenarios that Dapr Workflow can perform are: - Order processing involving inventory management, payment systems, shipping, etc. - HR onboarding workflows coordinating tasks across multiple departments and participants. @@ -66,7 +66,7 @@ You can call other workflow runtimes (for example, Temporal and Netflix Conducto ## Workflow patterns -Dapr Workflows simplify complex, stateful coordination requirements in microservice architectures. The following sections describe several application patterns that can benefit from Dapr Workflows. +Dapr Workflow simplifies complex, stateful coordination requirements in microservice architectures. The following sections describe several application patterns that can benefit from Dapr Workflow. Learn more about [different types of workflow patterns](todo) @@ -99,7 +99,7 @@ Want to skip the quickstarts? Not a problem. You can try out the workflow buildi ## Watch the demo -Watch [this video for an overview on Dapr Workflows](https://youtu.be/s1p9MNl4VGo?t=131): +Watch [this video for an overview on Dapr Workflow](https://youtu.be/s1p9MNl4VGo?t=131): diff --git a/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md index 9faa3e830..62290b83a 100644 --- a/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md +++ b/daprdocs/content/en/getting-started/quickstarts/workflow-quickstart.md @@ -26,7 +26,7 @@ In this guide, you'll: -Currently, you can experience Dapr Workflows using the .NET SDK. +Currently, you can experience the Dapr Workflow using the .NET SDK. {{< tabs ".NET" >}} @@ -260,7 +260,7 @@ The `Activities` directory holds the four workflow activities used by the workfl ## Watch the demo -Watch [this video to walk through the workflow .NET demo](https://youtu.be/BxiKpEmchgQ?t=2564): +Watch [this video to walk through the Dapr Workflow .NET demo](https://youtu.be/BxiKpEmchgQ?t=2564): @@ -272,7 +272,7 @@ Join the discussion in our [discord channel](https://discord.com/channels/778680 ## Next steps -- Set up Workflow with any programming language using [HTTP instead of an SDK]({{< ref howto-manage-workflow.md >}}) +- Set up Dapr Workflow with any programming language using [HTTP instead of an SDK]({{< ref howto-manage-workflow.md >}}) - Walk through a more in-depth [.NET SDK example workflow](https://github.com/dapr/dotnet-sdk/tree/master/examples/Workflow) - Learn more about [Workflow as a Dapr building block]({{< ref workflow-overview >}})