diff --git a/docs/en/SignalR-Integration.md b/docs/en/SignalR-Integration.md index 5b176a84a5..f6ba81b550 100644 --- a/docs/en/SignalR-Integration.md +++ b/docs/en/SignalR-Integration.md @@ -115,7 +115,7 @@ public class MessagingHub : Hub } ```` -The hub route will be `/signalr-hubs/messasing` for the `MessasingHub`: +The hub route will be `/signalr-hubs/messaging` for the `MessagingHub`: * Adding a standard `/signalr-hubs/` prefix * Continue with the **camel case** hub name, without the `Hub` suffix. @@ -123,7 +123,7 @@ The hub route will be `/signalr-hubs/messasing` for the `MessasingHub`: If you want to specify the route, you can use the `HubRoute` attribute: ````csharp -[HubRoute("/my-messasing-hub")] +[HubRoute("/my-messaging-hub")] public class MessagingHub : Hub { //... @@ -132,7 +132,7 @@ public class MessagingHub : Hub ### AbpHub Base Classes -Instead of the standard `Hub` and `Hub` classes, you can inherit from the `AbpHub` or `AbpHub` which hve useful base properties like `CurrentUser`. +Instead of the standard `Hub` and `Hub` classes, you can inherit from the `AbpHub` or `AbpHub` which have useful base properties like `CurrentUser`. Example: