Skip to content

Commit 7e7ea74

Browse files
committed
Fixing spelling issues
1 parent 8fc533b commit 7e7ea74

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/pre-call-diagnostics/pre-call-diagnostics-android.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Overview of the pre-call diagnostic API feature.
55
author: yassirbisteni
66
manager: bobgao
77
services: azure-communication-services
8-
ms.author: ybisteni
8+
ms.author: yassirb
99
ms.date: 22/11/2024
1010
ms.topic: conceptual
1111
ms.service: azure-communication-services
@@ -15,9 +15,9 @@ ms.service: azure-communication-services
1515

1616
[!INCLUDE [Public Preview Disclaimer](../../../../includes/public-preview-include.md)]
1717

18-
The pre-call API feature enables developers to programmatically validate a client’s readiness to join an Azure Communication Services call. You can only access pre-call features using the Calling SDK. The pre-call diagnostic feature provides multiple diagnostics including device, connection, and call quality. The pre-call diagnotic feature is available only for Web (JavaScript). We plan to enable these capabilities across platforms in the future. Provide us with [feedback](../../support.md) about which platforms you want to see pre-call diagnostics enabled.
18+
The pre-call API feature allows developers to programmatically validate a client’s readiness to join an Azure Communication Services call. You can only access pre-call features using the Calling SDK. The pre-call diagnostic feature provides multiple diagnostics including device, connection, and call quality. Provide us with [feedback](../../support.md) about which platforms you want to see pre-call diagnostics enabled.
1919

20-
## Pre-Call diagnostics accesss
20+
## Pre-Call diagnostics access
2121

2222
To access pre-call diagnostics, you need to initialize a `CallClient`, and provision an Azure Communication Services access token. Then you can access the `PreCallDiagnostics` feature and the `startTest` method.
2323

@@ -40,7 +40,7 @@ Once it finishes running, developers can access the result object.
4040

4141
## Diagnostic results
4242

43-
Pre-call diagnostics returns a full diagnostic of the device including details like availability and compatibility, call quality statistics, and in-call diagnostics. The results are returned as a `PreCallDiagnosticsReadyEvent` object.
43+
Pre-call diagnostics return a full diagnostic of the device including details like availability and compatibility, call quality statistics, and in-call diagnostics. The results are returned as a `PreCallDiagnosticsReadyEvent` object.
4444

4545
```java
4646
public void OnPreCallDiagnosticsReady(PreCallDiagnosticsReadyEvent args)
@@ -66,7 +66,7 @@ public void OnPreCallDiagnosticsReady(PreCallDiagnosticsReadyEvent args)
6666
}
6767
```
6868

69-
You can access individual result objects using the `PreCallDiagnosticsReadyEvent` type. Results for individual tests are returned as they're completed with many of the test results being available immediately. The results might take up to 1 minute as the test validates the quality of the video and audio.
69+
You can access individual result objects using the `PreCallDiagnosticsReadyEvent` type. Results for individual tests are returned as they are completed with many of the test results being available immediately. The results might take up to 1 minute as the test validates the quality of the video and audio.
7070

7171
### Device permissions
7272

articles/communication-services/quickstarts/voice-video-calling/includes/pre-call-diagnostics/pre-call-diagnostics-ios.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Overview of the pre-call diagnostic API feature.
55
author: yassirbisteni
66
manager: bobgao
77
services: azure-communication-services
8-
ms.author: ybisteni
8+
ms.author: yassirb
99
ms.date: 22/11/2024
1010
ms.topic: conceptual
1111
ms.service: azure-communication-services
@@ -15,9 +15,9 @@ ms.service: azure-communication-services
1515

1616
[!INCLUDE [Public Preview Disclaimer](../../../../includes/public-preview-include.md)]
1717

18-
The pre-call API feature enables developers to programmatically validate a client’s readiness to join an Azure Communication Services call. You can only access pre-call features using the Calling SDK. The pre-call diagnostic feature provides multiple diagnostics including device, connection, and call quality. The pre-call diagnotic feature is available only for Web (JavaScript). We plan to enable these capabilities across platforms in the future. Provide us with [feedback](../../support.md) about which platforms you want to see pre-call diagnostics enabled.
18+
The pre-call API feature allows developers to programmatically validate a client’s readiness to join an Azure Communication Services call. You can only access pre-call features using the Calling SDK. The pre-call diagnostic feature provides multiple diagnostics including device, connection, and call quality. Provide us with [feedback](../../support.md) about which platforms you want to see pre-call diagnostics enabled.
1919

20-
## Pre-Call diagnostics accesss
20+
## Pre-Call diagnostics access
2121

2222
To access pre-call diagnostics, you need to initialize a `CallClient`, and provision an Azure Communication Services access token. Then you can access the `PreCallDiagnostics` feature and the `startTest` method.
2323

@@ -67,7 +67,7 @@ Once it finishes running, developers can access the result object.
6767

6868
## Diagnostic results
6969

70-
Pre-call diagnostics returns a full diagnostic of the device including details like availability and compatibility, call quality statistics, and in-call diagnostics. The results are returned as a `PreCallDiagnosticsReadyEvent` object.
70+
Pre-call diagnostics return a full diagnostic of the device including details like availability and compatibility, call quality statistics, and in-call diagnostics. The results are returned as a `PreCallDiagnosticsReadyEvent` object.
7171

7272
```swift
7373
func onPreCallDiagnosticsReady(args: PreCallDiagnosticsReadyEventArgs) -> Void
@@ -91,7 +91,7 @@ func onPreCallDiagnosticsReady(args: PreCallDiagnosticsReadyEventArgs) -> Void
9191
}
9292
```
9393

94-
You can access individual result objects using the `PreCallDiagnosticsReadyEvent` type. Results for individual tests are returned as they're completed with many of the test results being available immediately. The results might take up to 1 minute as the test validates the quality of the video and audio.
94+
You can access individual result objects using the `PreCallDiagnosticsReadyEvent` type. Results for individual tests are returned as they are completed with many of the test results being available immediately. The results might take up to 1 minute as the test validates the quality of the video and audio.
9595

9696
### Device permissions
9797

articles/communication-services/quickstarts/voice-video-calling/includes/pre-call-diagnostics/pre-call-diagnostics-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.service: azure-communication-services
1515

1616
[!INCLUDE [Public Preview Disclaimer](../../../../includes/public-preview-include.md)]
1717

18-
The pre-call API feature enables developers to programmatically validate a client’s readiness to join an Azure Communication Services call. You can only access pre-call features using the Calling SDK. The pre-call diagnostic feature provides multiple diagnostics including device, connection, and call quality. The pre-call diagnotic feature is available only for Web (JavaScript). We plan to enable these capabilities across platforms in the future. Provide us with [feedback](../../support.md) about which platforms you want to see pre-call diagnostics enabled.
18+
The pre-call API feature enables developers to programmatically validate a client’s readiness to join an Azure Communication Services call. You can only access pre-call features using the Calling SDK. The pre-call diagnostic feature provides multiple diagnostics including device, connection, and call quality. Provide us with [feedback](../../support.md) about which platforms you want to see pre-call diagnostics enabled.
1919

2020
## Prerequisites
2121

articles/communication-services/quickstarts/voice-video-calling/includes/pre-call-diagnostics/pre-call-diagnostics-windows.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Overview of the pre-call diagnostic API feature.
55
author: yassirbisteni
66
manager: bobgao
77
services: azure-communication-services
8-
ms.author: ybisteni
8+
ms.author: yassirb
99
ms.date: 22/11/2024
1010
ms.topic: conceptual
1111
ms.service: azure-communication-services
@@ -15,9 +15,9 @@ ms.service: azure-communication-services
1515

1616
[!INCLUDE [Public Preview Disclaimer](../../../../includes/public-preview-include.md)]
1717

18-
The pre-call API feature enables developers to programmatically validate a client’s readiness to join an Azure Communication Services call. You can only access pre-call features using the Calling SDK. The pre-call diagnostic feature provides multiple diagnostics including device, connection, and call quality. The pre-call diagnotic feature is available only for Web (JavaScript). We plan to enable these capabilities across platforms in the future. Provide us with [feedback](../../support.md) about which platforms you want to see pre-call diagnostics enabled.
18+
The pre-call API feature allows developers to programmatically validate a client’s readiness to join an Azure Communication Services call. You can only access pre-call features using the Calling SDK. The pre-call diagnostic feature provides multiple diagnostics including device, connection, and call quality. Provide us with [feedback](../../support.md) about which platforms you want to see pre-call diagnostics enabled.
1919

20-
## Pre-Call diagnostics accesss
20+
## Pre-Call diagnostics access
2121

2222
To access pre-call diagnostics, you need to initialize a `CallClient`, and provision an Azure Communication Services access token. Then you can access the `PreCallDiagnostics` feature and the `startTest` method.
2323

@@ -41,7 +41,7 @@ Once it finishes running, developers can access the result object.
4141

4242
## Diagnostic results
4343

44-
Pre-call diagnostics returns a full diagnostic of the device including details like availability and compatibility, call quality statistics, and in-call diagnostics. The results are returned as a `PreCallDiagnosticsReadyEvent` object.
44+
Pre-call diagnostics return a full diagnostic of the device including details like availability and compatibility, call quality statistics, and in-call diagnostics. The results are returned as a `PreCallDiagnosticsReadyEvent` object.
4545

4646
```c#
4747
private void DiagnosticsReady(object sender, PreCallDiagnosticsReadyEventArgs args)
@@ -67,7 +67,7 @@ private void DiagnosticsReady(object sender, PreCallDiagnosticsReadyEventArgs ar
6767
}
6868
```
6969

70-
You can access individual result objects using the `PreCallDiagnosticsReadyEvent` type. Results for individual tests are returned as they're completed with many of the test results being available immediately. The results might take up to 1 minute as the test validates the quality of the video and audio.
70+
You can access individual result objects using the `PreCallDiagnosticsReadyEvent` type. Results for individual tests are returned as they are completed with many of the test results being available immediately. The results might take up to 1 minute as the test validates the quality of the video and audio.
7171

7272
### Device permissions
7373

0 commit comments

Comments
 (0)