Skip to content

Commit e939786

Browse files
Fixed typo that Acrolinx caught
"an one-to-one" to "a one-to-one"
1 parent 1e1468f commit e939786

File tree

1 file changed

+2
-2
lines changed
  • articles/communication-services/how-tos/cte-calling-sdk/includes/manage-calls

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Start a synchronous one-to-one or group call with `startCall` API on `teamsCallA
1414
> [!NOTE]
1515
> Start a group call with `teamsCallAgent` requires chat's `threadId` when calling `startCall` method. Created `TeamsCall` instance has property `threadId` capturing this thread. Communication Services Calling SDK does not keep participants in chat and call roster in sync. Microsft encourages developers to keep the roster in sync for the best user experience. Learn how to [manage chat thread](#manage-chat-thread).
1616
17-
Start an one-to-one Voice-over IP (VoIP) call to Teams user:
17+
Start a one-to-one Voice-over IP (VoIP) call to Teams user:
1818
```js
1919
const userCallee = { microsoftTeamsUserId: '<MICROSOFT_TEAMS_USER_ID>' };
2020
const oneToOneCall = teamsCallAgent.startCall(userCallee);
2121
```
2222

23-
Start an one-to-one phone call to E.164 phone number:
23+
Start a one-to-one phone call to E.164 phone number:
2424
```js
2525
const phoneCallee = { phoneNumber: '<PHONE_NUMBER_E164_FORMAT>' }
2626
const oneToOneCall = callAgent.startCall(phoneCallee );

0 commit comments

Comments
 (0)