Skip to content

Commit ed2075c

Browse files
authored
fixed typos
1 parent 384303a commit ed2075c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ If you need any help in executing the SQL script, you can find a Quickstart here
5757

5858
## Run sample locally
5959

60-
Make sure you have [.NET Core 3.0](https://dotnet.microsoft.com/download) SDK installed on your machine. Clone this repo in a directory on our computer and then configure the connection string in `appsettings.json`.
60+
Make sure you have [.NET Core 3.0](https://dotnet.microsoft.com/download) SDK installed on your machine. Clone this repo in a directory on your computer and then configure the connection string in `appsettings.json`.
6161

6262
If you don't want to save the connection string in the `appsettings.json` file for security reasons, you can just set it using an environment variable:
6363

@@ -67,7 +67,7 @@ Linux:
6767
export ConnectionStrings__DefaultConnection="<your-connection-string>"
6868
```
6969

70-
Windows:
70+
Windows (Powershell):
7171

7272
```powershell
7373
$Env:ConnectionStrings__DefaultConnection="<your-connection-string>"
@@ -128,7 +128,7 @@ Now that your REST API solution is ready, it's time to deploy it on Azure so tha
128128

129129
- [Create an ASP.NET Core app in App Service on Linux](https://docs.microsoft.com/en-us/azure/app-service/containers/quickstart-dotnetcore)
130130

131-
The only thing you have do in addition to what explained in the above articles is to add the connection string to the Azure Web App configuration. Using AZ CLI, for example:
131+
The only thing you have do in addition to what explained in the above article is to add the connection string to the Azure Web App configuration. Using AZ CLI, for example:
132132

133133
```bash
134134
appName="azure-sql-db-dotnet-rest-api"
@@ -143,7 +143,7 @@ az webapp config connection-string set \
143143

144144
Just make sure you correctly set `$appName` and `$resourceGroup` to match your environment and also that the variable `$ConnectionStrings__DefaultConnection` as also been set, as mentioned in section "Run sample locally".
145145

146-
An example of a full script that deploy the REST API is available here: `azure-deploy.sh`.
146+
An example of a full script that deploys the REST API is available here: `azure-deploy.sh`.
147147

148148
## Learn more
149149

0 commit comments

Comments
 (0)