From 256d9ab8a0581b2f062395bacaa99a70fa3cd355 Mon Sep 17 00:00:00 2001 From: Chris Houston Date: Sat, 15 Feb 2025 21:43:57 -0500 Subject: [PATCH 1/2] Update signalR.md --- 15/umbraco-cms/implementation/custom-routing/signalR.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-cms/implementation/custom-routing/signalR.md b/15/umbraco-cms/implementation/custom-routing/signalR.md index c32670548cd..6e9ecffb58f 100644 --- a/15/umbraco-cms/implementation/custom-routing/signalR.md +++ b/15/umbraco-cms/implementation/custom-routing/signalR.md @@ -36,7 +36,7 @@ public class TestHub : Hub ## Define a custom route -Next up, is defining a custom route. For this, we are going to use a `IAreaRoutes` and the base umbrace backend path so we dont have to reserve another path in the settings. +Next up, is defining a custom route. For this, we are going to use a `IAreaRoutes` and the base Umbraco backend path so we don't have to reserve another path in the settings. ```csharp using Microsoft.AspNetCore.Builder; From c3f73a173189633b6f7f0d806425a9cdc14e9ea8 Mon Sep 17 00:00:00 2001 From: Esha Noronha <82437098+eshanrnh@users.noreply.github.com> Date: Mon, 17 Feb 2025 12:05:47 +0100 Subject: [PATCH 2/2] Update 15/umbraco-cms/implementation/custom-routing/signalR.md --- 15/umbraco-cms/implementation/custom-routing/signalR.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-cms/implementation/custom-routing/signalR.md b/15/umbraco-cms/implementation/custom-routing/signalR.md index 6e9ecffb58f..af7788eeb8b 100644 --- a/15/umbraco-cms/implementation/custom-routing/signalR.md +++ b/15/umbraco-cms/implementation/custom-routing/signalR.md @@ -36,7 +36,7 @@ public class TestHub : Hub ## Define a custom route -Next up, is defining a custom route. For this, we are going to use a `IAreaRoutes` and the base Umbraco backend path so we don't have to reserve another path in the settings. +Next up, is defining a custom route. Use `IAreaRoutes` and the base Umbraco backend path so there's no need to reserve another path in the settings. ```csharp using Microsoft.AspNetCore.Builder;