Skip to content

Commit 76fd490

Browse files
committed
address Acrolinx feedback
1 parent f385608 commit 76fd490

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/communication-services/how-tos/call-automation/actions-for-call-control.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@ The response provides you with CallConnection object that you can use to take fu
170170

171171
You can create a connection to a call using CallLocator, then you can manage the call and perform actions in the call using Call Automation.
172172

173-
Currently, we support 3 different CallLocators:ServerCallLocator, GroupCallLocator and RoomCallLocator
173+
Currently, we support 3 different CallLocators:ServerCallLocator, GroupCallLocator, and RoomCallLocator
174174

175-
Connecting to a call using ServerCallLocator, which take a serverCallId. You can use it to connect to regular P2P or multi-parties call.
175+
To connect to a call using ServerCallLocator, which take a serverCallId. You can use it to connect to regular P2P or multi-parties call.
176176
### [csharp](#tab/csharp)
177177

178178
```csharp
@@ -207,7 +207,7 @@ call_connection_properties = client.connect_call(call_locator=server_call_locato
207207

208208
-----
209209

210-
Connecting to a call using GroupCallLocator, which takes a GroupCallId. You can use it to connect to a group call created using GroupCallId
210+
To connect to a call using GroupCallLocator, which takes a GroupCallId. You can use it to connect to a group call created using GroupCallId
211211
### [csharp](#tab/csharp)
212212

213213
```csharp
@@ -242,7 +242,7 @@ call_connection_properties = client.connect_call(call_locator=group_call_locator
242242

243243
-----
244244

245-
Connecting to a call using RoomCallLocator, which takes a RoomId. You can use it to connect to call for a Room, usually used for Virtual meetings
245+
To connect to a call using RoomCallLocator, which takes a RoomId. You can use it to connect to a virtual meeting call using ACS Room
246246
### [csharp](#tab/csharp)
247247

248248
```csharp
@@ -277,9 +277,9 @@ call_connection_properties = client.connect_call(call_locator=room_call_locator,
277277

278278
-----
279279

280-
The response provides you with CallConnection object that you can use to take further actions on this call once it's connected. Once it connects to the call, two events are published to the callback endpoint you provided earlier:
280+
The response provides you with CallConnection object that you can use to take further actions on this call once it successfully connect to a call. Once it connects to the call, two events are published to the callback endpoint you provided earlier:
281281

282-
1. `CallConnected` event notifying that you have connected to the call.
282+
1. `CallConnected` event notifying that you successfully connect to the call.
283283
2. `ParticipantsUpdated` event that contains the latest list of participants in the call.
284284

285285
![Sequence diagram for connecting to call.](media/connect-call-flow.png)

0 commit comments

Comments
 (0)