Skip to content

Commit a8b7f2f

Browse files
committed
fix typos and other minor revisions
1 parent cadc2e7 commit a8b7f2f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-signalr/signalr-quickstart-azure-functions-csharp.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ In this article, you'll learn how to use SignalR Service and Azure Functions to
2121

2222
The following prerequisites are needed for this quickstart:
2323

24-
- Visual Studio Code, or other code editor. If you don't already have Visual Studio Code installed, you can download and use it for free(https://code.visualstudio.com/Download).
24+
- Visual Studio Code, or other code editor. If you don't already have Visual Studio Code installed, [download Visual Studio Code here](https://code.visualstudio.com/Download).
2525
- An Azure subscription. If you don't have an Azure subscription, [create one for free](https://azure.microsoft.com/free/dotnet) before you begin.
26-
- [Azure Functions Core Tools)](../azure-functions/functions-run-local.md?tabs=windows%2Ccsharp%2Cbash#v2)
26+
- [Azure Functions Core Tools](../azure-functions/functions-run-local.md?tabs=windows%2Ccsharp%2Cbash#v2)
2727
- [.NET Core SDK](https://dotnet.microsoft.com/download)
2828

2929
## Create an Azure SignalR Service instance
@@ -34,7 +34,7 @@ The following prerequisites are needed for this quickstart:
3434

3535
You'll need the Azure Functions Core Tools for this step.
3636

37-
1. Create an empty directory and navigate to the directory with command line.
37+
1. Create an empty directory and change to the directory with the command line.
3838
1. Initialize a new project.
3939

4040
```bash
@@ -128,7 +128,7 @@ You'll need the Azure Functions Core Tools for this step.
128128
- `Negotiate` is used by the client to get an access token.
129129
- `Broadcast` is periodically called to get the star count from GitHub and then broadcast messages to all clients.
130130
131-
1. The client interface for this sample is a web page. We read HTML content from `content/index.html` in `GetHomePage` function, create a new file `index.html` in `content` directory under project root folder. And copy the following content.
131+
1. The client interface for this sample is a web page. We read HTML content from `content/index.html` in `GetHomePage` function, then create a new file *index.html* in the `content` directory under project root folder. Copy the following content into *index.html*.
132132
133133
```html
134134
<html>
@@ -176,7 +176,7 @@ You'll need the Azure Functions Core Tools for this step.
176176
177177
![Screenshot that highlights the primary connection string.](media/signalr-quickstart-azure-functions-javascript/signalr-quickstart-keys.png)
178178
179-
1. Copy the primary connection string. And execute the command below.
179+
1. Copy the primary connection string, and then run the following command:
180180
181181
```bash
182182
func settings add AzureSignalRConnectionString "<signalr-connection-string>"

0 commit comments

Comments
 (0)