Skip to content

Commit 4dd371d

Browse files
committed
Fix comments
1 parent 3f2f734 commit 4dd371d

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

articles/communication-services/concepts/ui-library/includes/mobile-ui-use-cases.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ UI Library supports picture in picture mode for call screen. While being in the
104104

105105
UI Library supports CallKit Integration to handle interaction with CallKit for calls. To learn more about the integration for iOS platform and usage of the API, see [How to use CallKit.](../../../how-tos/ui-library-sdk/callkit.md)
106106

107-
### Telecom Manager support
107+
### TelecomManager support
108108

109-
The UI Library now supports integration with the Telecom Manager, allowing for handling of call hold and resume functions. To learn more about the integration for Android platform and usage of the API, see [How to use TelecomManager.](../../../how-tos/ui-library-sdk/telecom-manager.md)
109+
The UI Library now supports integration with the TelecomManager, allowing for handling of call hold and resume functions. To learn more about the integration for Android platform and usage of the API, see [How to use TelecomManager.](../../../how-tos/ui-library-sdk/telecommanager.md)
110110

111111
### One-to-one call and PUSH notification support
112112

articles/communication-services/how-tos/ui-library-sdk/callkit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ let options = CallCompositeOptions(
113113
)
114114
```
115115

116-
### Hold and Resume API for CallKit integrated in Application
116+
### Hold and Resume API for CallKit integrated in application
117117

118118
For CallKit integrated in application use `hold` and `resume` to manage call state.
119119

articles/communication-services/how-tos/ui-library-sdk/includes/push-and-one-to-one/android.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ To get the device registration token, add the Firebase SDK to your application m
5757

5858
-----
5959

60-
### Handle push notifications received from EventGrid or notification hub
60+
### Handle push notifications received from Event Grid or notification hub
6161

6262
To receive push notifications for incoming calls, call `handlePushNotification` on a `CallComposite` instance with a payload.
6363

64-
To get the payload from FCM, begin by creating a new service (**File** > **New** > **Service** > **Service**) that extends the `FirebaseMessagingService` Firebase SDK class and overrides the `onMessageReceived` method. This method is the event handler that's called when FCM delivers the push notification to the application.
64+
To get the payload from FCM, begin by creating a new service (**File** > **New** > **Service** > **Service**) that extends the `FirebaseMessagingService` Firebase SDK class and overrides the `onMessageReceived` method. This method is the event handler that called when FCM delivers the push notification to the application.
6565

6666
#### [Kotlin](#tab/kotlin)
6767

articles/communication-services/how-tos/ui-library-sdk/includes/push-and-one-to-one/ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The following sections describe how to register for, handle, and unregister push
2424

2525
Azure Communication Services integrates with [Azure Event Grid](../../../../../event-grid/overview.md) and [Azure Notification Hubs](../../../../../notification-hubs/notification-hubs-push-notification-overview.md), so you can [add push notifications](../../../../concepts/notifications.md) to your apps in Azure.
2626

27-
### Register/Unregister for notification hub push notifications
27+
### Register/unregister for notification hub push notifications
2828

2929
To register for push notifications, the application needs to call `registerPushNotifications()` on a `CallComposite` instance with a device registration token.
3030

articles/communication-services/how-tos/ui-library-sdk/telecom-manager.md renamed to articles/communication-services/how-tos/ui-library-sdk/telecommanager.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ In this article, you learn how to set up TelecomManager correctly by using the U
2626

2727
For more information, see the [open-source Android UI Library](https://github.com/Azure/communication-ui-library-android) and the [sample application code](https://github.com/Azure-Samples/communication-services-android-quickstarts/tree/main/ui-calling).
2828

29-
### Set up TelecomManager integration
29+
## Set up TelecomManager integration
3030

3131
The Azure Communication Services Calling SDK supports TelecomManager integration. You can enable this integration in the UI Library by configuring an instance of `CallCompositeTelecomManagerOptions`. For more information, see [Integrate with TelecomManager](../calling-sdk/telecommanager-integration.md).
3232

33-
`CallCompositeTelecomManagerIntegrationMode` provides options for `SDK_PROVIDED_TELECOM_MANAGER` and `APPLICATION_IMPLEMENTED_TELECOM_MANAGER`. `SDK_PROVIDED_TELECOM_MANAGER` requires `phoneAccountId` and use implementation from calling sdk. `APPLICATION_IMPLEMENTED_TELECOM_MANAGER` is for if telecom manager is integrated in application.
33+
`CallCompositeTelecomManagerIntegrationMode` provides options for `SDK_PROVIDED_TELECOM_MANAGER` and `APPLICATION_IMPLEMENTED_TELECOM_MANAGER`. `SDK_PROVIDED_TELECOM_MANAGER` requires `phoneAccountId` and use implementation from calling SDK. `APPLICATION_IMPLEMENTED_TELECOM_MANAGER` is for if TelecomManager is integrated in application.
3434

3535
#### [Kotlin](#tab/kotlin)
3636

@@ -53,7 +53,7 @@ The Azure Communication Services Calling SDK supports TelecomManager integration
5353

5454
-----
5555

56-
### Hold and Resume API
56+
## Hold and Resume API
5757

5858
For `APPLICATION_IMPLEMENTED_TELECOM_MANAGER` use `hold` and `resume` to manage call state.
5959

articles/communication-services/quickstarts/ui-library/includes/get-started-call/android.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,8 +363,8 @@ CallCompositeJoinLocator locator = new CallCompositeTeamsMeetingLinkLocator("TEA
363363

364364
[!INCLUDE [Public Preview Notice](../../../../includes/public-preview-include.md)]
365365

366-
To set up a Azure Communication Services Rooms call, initialize a `CallCompositeRoomLocator` with a room ID.
367-
While on the setup screen, `CallComposite` will enable camera and microphone to all participants with any room role. Actual up-to-date participant role and capabilities are retrieved from Azure Communication Services once call is connected.
366+
To set up an Azure Communication Services Rooms call, initialize a `CallCompositeRoomLocator` with a room ID.
367+
While on the setup screen, `CallComposite` enables camera and microphone to all participants with any room role. Actual up-to-date participant role and capabilities are retrieved from Azure Communication Services once call is connected.
368368

369369
For more information about Rooms, how to create and manage one see [Rooms Quickstart](../../../rooms/get-started-rooms.md)
370370

@@ -381,7 +381,7 @@ CallCompositeJoinLocator locator = new CallCompositeRoomLocator("<ROOM_ID>");
381381
```
382382
---
383383

384-
### Set up a 1:N Outgoing call and Incoming Call Push Notifications
384+
### Set up a 1:N Outgoing call and incoming call push notifications
385385

386386
UI Library supports one-to-one VoIP call to dial users by communication identifier. To receive incoming call UI Library also supports registering for PUSH notifications. To learn more about the integration for Android and iOS platform and usage of the API, see [How to make one-to-one call and receive PUSH notifications.](../../../../how-tos/ui-library-sdk/one-to-one-calling.md)
387387

articles/communication-services/quickstarts/ui-library/includes/get-started-call/ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ For more information about Rooms, how to create and manage one see [Rooms QuickS
233233
let locator = .roomCall(roomId: "<ROOM_ID>")
234234
```
235235

236-
### Set up a 1:N Outgoing call and Incoming Call Push Notifications
236+
### Set up a 1:N Outgoing call and and incoming call push notifications
237237

238238
UI Library supports one-to-one VoIP call to dial users by communication identifier. To receive incoming call UI Library also supports registering for PUSH notifications. To learn more about the integration for Android and iOS platform and usage of the API, see [How to make one-to-one call and receive PUSH notifications.](../../../../how-tos/ui-library-sdk/one-to-one-calling.md)
239239

articles/communication-services/toc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -434,13 +434,13 @@ items:
434434
href: how-tos/ui-library-sdk/skip-setup-screen.md
435435
- name: Inject participant view data
436436
href: how-tos/ui-library-sdk/data-model.md
437-
- name: Integrate CalllKit
437+
- name: Integrate CallKit
438438
href: how-tos/ui-library-sdk/callkit.md
439439
- name: Integrate TelecomManager
440-
href: how-tos/ui-library-sdk/telecom-manager.md
440+
href: how-tos/ui-library-sdk/telecommanager.md
441441
- name: Set up localization
442442
href: how-tos/ui-library-sdk/localization.md
443-
- name: Set up up one-to-one calling and push notifications
443+
- name: Set up one-to-one calling and push notifications
444444
href: how-tos/ui-library-sdk/one-to-one-calling.md
445445
- name: Troubleshooting
446446
href: how-tos/ui-library-sdk/troubleshooting.md

0 commit comments

Comments
 (0)