Skip to content

Commit aac42ca

Browse files
authored
Update manage-calls-web.md
Acrolinx suggested changes to increase score.
1 parent 887f08f commit aac42ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/communication-services/how-tos/calling-sdk/includes/manage-calls/manage-calls-web.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ callAgentInstance.on('incomingCall', incomingCallHandler);
111111

112112
The `incomingCall` event includes an `incomingCall` instance that you can accept or reject.
113113

114-
When starting/joining/accepting a call with video on, if the specified video camera device is being used by another process or if it is disabled in the system, the call will start with video off, and a cameraStartFailed: true call diagnostic will be raised.
114+
When starting/joining/accepting a call with video on, if the specified video camera device is being used by another process or if it's disabled in the system, the call starts with video off, and a cameraStartFailed: true call diagnostic will be raised.
115115

116116
## Hold and resume call
117117

@@ -124,7 +124,7 @@ To hold the call
124124
```js
125125
await call.hold();
126126
```
127-
When `hold` API will resolve, call state will be set to 'LocalHold' , if this is a 1:1 call, other participant will be also put on hold, and state of the call from the perspective of that participant will be set to 'RemoteHold', That participant may further put it's call on hold, which would result in state change to 'LocalHold'
127+
When `hold` API will resolve, call state will be set to 'LocalHold' , if this is a 1:1 call, other participant will be also put on hold, and state of the call from the perspective of that participant will be set to 'RemoteHold', That participant may further put its call on hold, which would result in state change to 'LocalHold'
128128
If this is a group call - hold is just a local operation, it won't hold the call for other participants of that call.
129129
To fully resume that call all users who initiated hold must resume it.
130130

@@ -236,7 +236,7 @@ The state can be:
236236
```
237237
Note:
238238
- This property is only set when adding a remote participant via the Call.addParticipant() API, and the remote participant declines for example.
239-
- In the scenario where for example, UserB kicks UserC, from UserA's perspective, UserA will not see this flag get set for UserC. In other words UserA will not see UserC's callEndReason property get set at all.
239+
- In the scenario, where for example, UserB kicks UserC, from UserA's perspective, UserA will not see this flag get set for UserC. In other words UserA will not see UserC's callEndReason property get set at all.
240240
241241
- `isMuted` status: To find out if a remote participant is muted, check the `isMuted` property. It returns `Boolean`.
242242

0 commit comments

Comments
 (0)