Skip to content

Commit c0f464e

Browse files
author
Kevin Le Goff
committed
Remove future
1 parent df49fb0 commit c0f464e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ To resume call from hold:
132132
```
133133
await call.resume();
134134
```
135-
When the `resume` API resolves, the call state will be set again to `Connected`.
135+
When the `resume` API resolves, the call state is set again to `Connected`.
136136

137137
## Mute and unmute a call
138138

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

161-
When incoming audio is muted, the participant client SDK will still receive 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 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.
162162

163163
## Mute other participants
164164
> [!NOTE]
@@ -272,7 +272,7 @@ const state = remoteParticipant.state;
272272
```js
273273
const endpointDetails: EndpointDetails[] = remoteParticipant.endpointDetails;
274274
```
275-
*Note: A remote participant could be in the call from many endpoints, and each endpoint will have its own unique `participantId`. `participantId` is different from the RemoteParticipant.identifier's raw ID.*
275+
*Note: A remote participant could be in the call from many endpoints, and each endpoint has its own unique `participantId`. `participantId` is different from the RemoteParticipant.identifier's raw ID.*
276276
277277
## Check call properties
278278
@@ -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 will have 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

0 commit comments

Comments
 (0)