Skip to content

Commit 7557a2a

Browse files
committed
882104 - Spell check error
1 parent 62d3fed commit 7557a2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ej2-asp-core-mvc/document-editor/collaborative-editing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ private ActionInfo AddOperationsToTable(ActionInfo action)
296296

297297
#### Add Web API to get previous operation as a backup to get lost operations
298298

299-
On the client side, messages broadcasted using SignalR may be received in a different order, or some operations may be missed due to network issues. In these cases, we need a backup method to retrieve missing records from the database.
299+
On the client side, messages broadcast using SignalR may be received in a different order, or some operations may be missed due to network issues. In these cases, we need a backup method to retrieve missing records from the database.
300300
Using the following method, we can retrieve all operations after the last successful client-synced version and return all missing operations to the requesting client.
301301

302302
```csharp
@@ -305,7 +305,7 @@ public async Task<ActionInfo> UpdateAction([FromBody] ActionInfo param)
305305
try
306306
{
307307
ActionInfo modifiedAction = AddOperationsToTable(param);
308-
//After transformation broadcast changes to all users in the gropu
308+
//After transformation broadcast changes to all users in the group
309309
await _hubContext.Clients.Group(param.RoomName).SendAsync("dataReceived", "action", modifiedAction);
310310
return modifiedAction;
311311
}
@@ -381,4 +381,4 @@ builder.Services.AddDistributedMemoryCache().AddSignalR().AddStackExchangeRedis(
381381

382382
Full version of the code discussed about can be found in below GitHub location.
383383

384-
Github Example: [`Collaborative editing examples`](https://github.com/SyncfusionExamples/EJ2-Document-Editor-Collabrative-Editing)
384+
GitHub Example: [`Collaborative editing examples`](https://github.com/SyncfusionExamples/EJ2-Document-Editor-Collabrative-Editing)

0 commit comments

Comments
 (0)