Skip to content

Commit 4b3afd6

Browse files
authored
Acrolinx and typo fixes
1 parent df3bce3 commit 4b3afd6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

articles/communication-services/tutorials/calling-widget/calling-widget-tutorial.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,18 @@ Only use this step if you're creating a new application.
4747
To set up the react App, we use the `create-react-app` command line tool. This tool
4848
creates an easy to run TypeScript application powered by React.
4949

50-
To make sure that you have Node installed on your machine run this command in powershell or terminal to see your Node version
50+
To make sure that you have Node installed on your machine, run this command in PowerShell or the terminal to see your Node version:
51+
5152
```bash
5253
node -v
5354
```
5455

55-
If you do not have `create-react-app` installed on your machine run the following to install it as a global command
56+
If you don't have `create-react-app` installed on your machine, run the following command to install it as a global command:
5657

5758
```bash
5859
npm install -g create-react-app
5960
```
60-
Once that is installed run this next command to create a new react application to build the sample in.
61+
After that command is installed, run this next command to create a new react application to build the sample in:
6162

6263
```bash
6364
# Create an Azure Communication Services App powered by React.
@@ -69,7 +70,7 @@ cd ui-library-calling-widget-app
6970

7071
### Get your dependencies
7172

72-
Then you need to update the dependency array in the `package.json` to include some packages from Azure Communication Services for the widget experience we're going to build to work:
73+
Then, you need to update the dependency array in the `package.json` to include some packages from Azure Communication Services for the widget experience we're going to build to work:
7374

7475
```json
7576
"@azure/communication-calling": "1.22.1",
@@ -81,7 +82,7 @@ Then you need to update the dependency array in the `package.json` to include so
8182
"@fluentui/react": "~8.98.3",
8283
```
8384

84-
Once you add these packages to your `package.json`, youre all set to start working on your new project. In this tutorial, we are modifying the files in the `src` directory.
85+
After you add these packages to your `package.json`, you're all set to start working on your new project. In this tutorial, we are modifying the files in the `src` directory.
8586

8687
## Initial app setup
8788

0 commit comments

Comments
 (0)