From 173d456b96b6ae1062a834adc578b0712f77c685 Mon Sep 17 00:00:00 2001 From: mrchatam <287639636+mrchatam@users.noreply.github.com> Date: Fri, 11 Sep 2026 22:43:08 +0000 Subject: [PATCH] docs: remove duplicate 'of' in ADR 0054 --- docs/decisions/0054-processes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/decisions/0054-processes.md b/docs/decisions/0054-processes.md index ed2f0c7c17ef..29366e802edc 100644 --- a/docs/decisions/0054-processes.md +++ b/docs/decisions/0054-processes.md @@ -279,7 +279,7 @@ The instance of `KernelProcess` that we've created is nothing more than an objec #### Step 5 - Run the Process: -Running a Process requires using a "connector" to a supported runtime. As part of the core packages we will include an in-process runtime that is capable of of running a process locally on a dev machine or in a server. This runtime will initially use memory or file based persistence and will allow for easy development and debugging. +Running a Process requires using a "connector" to a supported runtime. As part of the core packages we will include an in-process runtime that is capable of running a process locally on a dev machine or in a server. This runtime will initially use memory or file based persistence and will allow for easy development and debugging. Additionally we will provide support for [Orleans](https://learn.microsoft.com/en-us/dotnet/orleans/overview) and [Dapr Actor](https://docs.dapr.io/developing-applications/building-blocks/actors/actors-overview/) based runtimes which will allow customers to easily deploy processes as a distributed and highly scalable cloud based system.