Skip to content

Commit 2481ee9

Browse files
author
Kevin Le Goff
committed
Fix acrolinx
1 parent c0f464e commit 2481ee9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Call creation and start are synchronous. The `call` instance allows you to subsc
1717

1818
To call another Communication Services user, use the `startCall` method on `callAgent` and pass the recipient's `CommunicationUserIdentifier` that you [created with the Communication Services administration library](../../../../quickstarts/identity/access-tokens.md).
1919

20-
For a 1:1 call to a user, use the following code:
20+
For a "1:1" call to a user, use the following code:
2121

2222
```js
2323
const userCallee = { communicationUserId: '<ACS_USER_ID>' }
@@ -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-
The Azure Communication Calling SDK raises a cameraStartFailed: true call diagnostic if the camera is not available when starting, accepting, or joining a call with video enabled. In this case, the call starts with video off. The camera might not be available because it is being used by another process or because it is disabled in the operating system.
114+
The Azure Communication Calling SDK raises a cameraStartFailed: true call diagnostic if the camera isn't available when starting, accepting, or joining a call with video enabled. In this case, the call starts with video off. The camera might not be available because it's being used by another process or because it's disabled in the operating system.
115115

116116
## Hold and resume call
117117

@@ -158,7 +158,7 @@ await call.muteIncomingAudio();
158158
await call.unmuteIncomingAudio();
159159
```
160160

161-
When incoming audio is muted, the participant client SDK still receives the call audio (remote participant's audio). The call audio won't be heard in the speaker and the participant won't be able to listen until 'call.unmuteIncomingAudio()' is called. However, we can apply filter on call audio and play the filtered audio.
161+
When incoming audio is muted, the participant client SDK still receives the call audio (remote participant's audio). The call audio isn't heard in the speaker and the participant isn't able to listen until 'call.unmuteIncomingAudio()' is called. However, we can apply filter on call audio and play the filtered audio.
162162

163163
## Mute other participants
164164
> [!NOTE]
@@ -244,7 +244,7 @@ const state = remoteParticipant.state;
244244
```
245245
Note:
246246
- This property is only set when adding a remote participant via the Call.addParticipant() API, and the remote participant declines for example.
247-
- In the scenario, where for example, UserB kicks UserC, from UserA's perspective, UserA won't see this flag get set for UserC. In other words UserA won't see UserC's callEndReason property get set at all.
247+
- In the scenario, where UserB kicks UserC, from UserA's perspective, UserA doesn't see this flag get set for UserC. In other words UserA doesn't see UserC's callEndReason property get set at all.
248248

249249
- `isMuted` status: To find out if a remote participant is muted, check the `isMuted` property. It returns `Boolean`.
250250

@@ -285,7 +285,7 @@ Get the local participant ID:
285285
```js
286286
const participantId: string = call.info.participantId;
287287
```
288-
*Note: An Azure Communication Services identity can use the web calling sdk in many endpoints, and each endpoint has its own unique `participantId`. `participantId` is different from the Azure Communication Services identity raw Id.*
288+
*Note: An Azure Communication Services identity can use the web calling SDK in many endpoints, and each endpoint has its own unique `participantId`. `participantId` is different from the Azure Communication Services identity raw ID.*
289289
290290
Retrieve the thread ID if joining a Teams meeting:
291291
```js
@@ -323,8 +323,8 @@ This returns a string representing the current state of a call:
323323
- `Ringing`: For an outgoing call, indicates that a call is ringing for remote participants. It's `Incoming` on their side.
324324
- `EarlyMedia`: Indicates a state in which an announcement is played before the call is connected.
325325
- `Connected`: Indicates that the call is connected.
326-
- `LocalHold`: Indicates that the call is put on hold by a local participant. No media is flowing between the local endpoint and remote participants.
327-
- `RemoteHold`: Indicates that the call was put on hold by remote participant. No media is flowing between the local endpoint and remote participants.
326+
- `LocalHold`: Indicates that a local partipant the call put the call on hold. No media is flowing between the local endpoint and remote participants.
327+
- `RemoteHold`: Indicates that a remote partipant the call put the call on hold. No media is flowing between the local endpoint and remote participants.
328328
- `InLobby`: Indicates that user is in lobby.
329329
- `Disconnecting`: Transition state before the call goes to a `Disconnected` state.
330330
- `Disconnected`: Final call state. If the network connection is lost, the state changes to `Disconnected` after two minutes.
@@ -344,7 +344,7 @@ const isIncoming = call.direction == 'Incoming';
344344
const isOutgoing = call.direction == 'Outgoing';
345345
```
346346

347-
Inspect the active video streams and active screen sharing streams by checking the `localVideoStreams` collection. The `localVideoStreams` API returns `LocalVideoStream` objects or type `Video`, `ScreenSharing` or `RawMedia`.
347+
Inspect the active video streams and active screen sharing streams by checking the `localVideoStreams` collection. The `localVideoStreams` API returns `LocalVideoStream` objects of type `Video`, `ScreenSharing`, or `RawMedia`.
348348

349349
```js
350350
const localVideoStreams = call.localVideoStreams;

0 commit comments

Comments
 (0)