Skip to content

Commit eb2bd1c

Browse files
committed
update filename and fix acrolynx suggestions
1 parent 7401327 commit eb2bd1c

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

articles/communication-services/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ items:
149149
- name: 2. Request camera and microphone permissions
150150
href: tutorials/call-readiness/call-readiness-tutorial-part-2-requesting-device-access.md
151151
- name: 3. Microphone and camera setup before a call
152-
href: tutorials/call-readiness/call-readiness-tutorial-part-3-camera-and-microphone-setup.md
152+
href: tutorials/call-readiness/call-readiness-tutorial-part-3-camera-microphone-setup.md
153153
- name: Enable Push Notifications in your chat app
154154
href: tutorials/add-chat-push-notifications.md
155155
- name: Concepts

articles/communication-services/tutorials/call-readiness/call-readiness-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ When a user intends to join a web call, their primary focus is on the conversati
2323
It may be impossible to predict every issue or combination of issues that may arise, but by applying this tutorial you can:
2424

2525
- Reduce the likelihood of issues affecting a user during a call
26-
- Only expose an issue if it is going to negatively impact the experience
26+
- Only expose an issue if it's going to negatively impact the experience
2727
- Avoid making a user hunt for a resolution; Offer guided help to resolve the issue
2828

29-
Related to this tutorial is the Azure Communication Services [Network Testing Diagnostic Tool](../../concepts/developer-tools/network-diagnostic.md). This tool can be used by users for further troubleshooting in customer support scenarios.
29+
Related to this tutorial is the Azure Communication Services [Network Testing Diagnostic Tool](../../concepts/developer-tools/network-diagnostic.md). Users can user the Network Testing Diagnostics Tool for further troubleshooting in customer support scenarios.
3030

3131
## Tutorial Structure
3232

3333
In this tutorial, we use the Azure Communication Services UI Library to create an experience that gets the user ready to join a call. This tutorial is structured into three parts:
3434

3535
- Part 1: [Getting your user onto a supported browser](./call-readiness-tutorial-part-1-browser-support.md)
3636
- Part 2: [Ensuring your App has access to the microphone and camera](./call-readiness-tutorial-part-2-requesting-device-access.md)
37-
- Part 3: [Having your user select their desired microphone and camera](./call-readiness-tutorial-part-3-camera-and-microphone-setup.md)
37+
- Part 3: [Having your user select their desired microphone and camera](./call-readiness-tutorial-part-3-camera-microphone-setup.md)
3838

3939
## Prerequisites
4040

articles/communication-services/tutorials/call-readiness/call-readiness-tutorial-part-1-browser-support.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.subservice: calling
1717

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

20-
In this tutorial, we are using Azure Communication Services with the [UI Library](https://aka.ms/acsstorybook) to create an experience that gets users ready to join a call. The UI Library provides a set of rich components and UI controls that can be used to produce a Call Readiness experience, and a rich set of APIs to understand the user state.
20+
In this tutorial, we're using Azure Communication Services with the [UI Library](https://aka.ms/acsstorybook) to create an experience that gets users ready to join a call. The UI Library provides a set of rich components and UI controls that can be used to produce a Call Readiness experience, and a rich set of APIs to understand the user state.
2121

2222
## Prerequisites
2323

@@ -138,7 +138,7 @@ export const checkEnvironmentSupport = async (callClient: StatefulCallClient): P
138138
}
139139
```
140140

141-
The data that returns from this call is the following:
141+
The data returned from `checkEnvironmentSupport` contains the following information:
142142

143143
- Browser support
144144
- Browser version support
@@ -281,7 +281,7 @@ export const EnvironmentChecksComponent = (props: {
281281

282282
We can then add the `EnvironmentChecksComponent` to the `App.tsx`. The App then move the user to the _Device Checks_ stage once the test is successful using the `onTestsSuccessful` callback:
283283

284-
Let's now import the new component into our app in `App.tsx`
284+
Now we will import the new component into our app in `App.tsx`
285285

286286
```ts
287287
import { EnvironmentChecksComponent } from './EnvironmentChecksComponent';
@@ -314,7 +314,7 @@ const App = (): JSX.Element => {
314314
}
315315
```
316316

317-
You can now run the app. Try running on an [unsupported browser](../../concepts/voice-video-calling/calling-sdk-features.md#javascript-calling-sdk-support-by-os-and-browser) and you'll see the unsupported browser prompt:
317+
You can now run the app. Try running on an [unsupported browser](../../concepts/voice-video-calling/calling-sdk-features.md#javascript-calling-sdk-support-by-os-and-browser) and you see the unsupported browser prompt:
318318

319319
![Gif showing browser check failing](../media/call-readiness/browser-support-check-failed.gif)
320320

articles/communication-services/tutorials/call-readiness/call-readiness-tutorial-part-2-requesting-device-access.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const requestCameraAndMicrophonePermissions = async (callClient: Stateful
111111
### Prompting the user to grant access to the camera and microphone
112112

113113
Now we have the prompts and check and request logic, we create a `DeviceAccessComponent` to prompt the user regarding device permissions.
114-
In this component we display different prompts to the user based on the device permission state:
114+
In this component, we display different prompts to the user based on the device permission state:
115115

116116
- If the device permission state is unknown, we display a prompt to the user informing them we're checking for device permissions.
117117
- If we're requesting permissions, we display a prompt to the user encouraging them to accept the permissions request.
@@ -255,4 +255,4 @@ The app presents the user with prompts to guide them through device access:
255255
## Next steps
256256

257257
> [!div class="nextstepaction"]
258-
> [Part 3: Selecting a microphone and camera for the call](./call-readiness-tutorial-part-3-camera-and-microphone-setup.md)
258+
> [Part 3: Selecting a microphone and camera for the call](./call-readiness-tutorial-part-3-camera-microphone-setup.md)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Access the full code for this tutorial on [GitHub](https://github.com/Azure-Samp
2929
## Letting the user choose their camera, microphone and speaker
3030

3131
From the previous two parts of the tutorial, the user is on a supported browser, and they have given us permission to access their camera and microphone. We can now make sure the user can choose the correct microphone, camera and speaker they want to use for their call.
32-
We present the user with a rich interface to choose their camera, microphone and speaker. Our final device setup UI will look like this:
32+
We present the user with a rich interface to choose their camera, microphone and speaker. Our final device setup UI looks like this:
3333

3434
![Image of the device setup page](../media/call-readiness/device-setup-page.png)
3535

0 commit comments

Comments
 (0)