Skip to content

Commit a206674

Browse files
author
Tiago Brenck
authored
Merge pull request #341 from Azure-Samples/tibre/grammarFix
Fixed grammar issues
2 parents 3a5fdb6 + e1bbe94 commit a206674

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

1-WebApp-OIDC/1-1-MyOrg/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,14 +172,14 @@ cd "1-WebApp-OIDC\1-1-MyOrg"
172172
- update the `sslPort` of the `iisSettings` section to be `44321`
173173
- in the `applicationUrl` property of use `https://localhost:44321`
174174
175-
1. (Optional) If you don't have a custom `AccountController` to handle the *sign-in* and *sign-out* requests, you can use the `Microsoft.Identity.Web.UI` built-in one. For that, please include this change on **Startup.cs**:
175+
1. (Optional) If you don't have a custom `AccountController` to handle the *sign-in* and *sign-out* requests, you can use the `Microsoft.Identity.Web.UI` built-in one. For that, please include this change in **Startup.cs**:
176176

177177
- at the top of the file, add the following using directive:
178178

179179
```CSharp
180180
using Microsoft.Identity.Web.UI;
181181
```
182-
- in the `ConfigureServices` method, change the **AddControllersWithView** code snippet with this:
182+
- in the `ConfigureServices` method, change the **AddControllersWithView** code snippet to this:
183183

184184
```CSharp
185185
services.AddControllersWithViews(options =>
@@ -191,7 +191,7 @@ cd "1-WebApp-OIDC\1-1-MyOrg"
191191
}).AddMicrosoftIdentityUI();
192192
```
193193

194-
- on **Views/Shared/_LoginPartial.cshtml**, change the **asp-area** tag to: `asp-area="MicrosoftIdentity"`
194+
- in **Views/Shared/_LoginPartial.cshtml**, change the **asp-area** tag to: `asp-area="MicrosoftIdentity"`
195195

196196
### Step 3: Run the sample
197197

1-WebApp-OIDC/1-2-AnyOrg/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,14 @@ cd "1-WebApp-OIDC\1-2-AnyOrg"
164164
- update the `sslPort` of the `iisSettings` section to be `44321`
165165
- in the `applicationUrl` property of use `https://localhost:44321`
166166
167-
1. (Optional) If you don't have a custom `AccountController` to handle the *sign-in* and *sign-out* requests, you can use the `Microsoft.Identity.Web.UI` built-in one. For that, please include this change on **Startup.cs**:
167+
1. (Optional) If you don't have a custom `AccountController` to handle the *sign-in* and *sign-out* requests, you can use the `Microsoft.Identity.Web.UI` built-in one. For that, please include this change in **Startup.cs**:
168168

169169
- at the top of the file, add the following using directive:
170170

171171
```CSharp
172172
using Microsoft.Identity.Web.UI;
173173
```
174-
- in the `ConfigureServices` method, change the **AddControllersWithView** code snippet with this:
174+
- in the `ConfigureServices` method, change the **AddControllersWithView** code snippet to this:
175175

176176
```CSharp
177177
services.AddControllersWithViews(options =>
@@ -183,7 +183,7 @@ cd "1-WebApp-OIDC\1-2-AnyOrg"
183183
}).AddMicrosoftIdentityUI();
184184
```
185185

186-
- on **Views/Shared/_LoginPartial.cshtml**, change the **asp-area** tag to: `asp-area="MicrosoftIdentity"`
186+
- in **Views/Shared/_LoginPartial.cshtml**, change the **asp-area** tag to: `asp-area="MicrosoftIdentity"`
187187

188188
### Step 3: Run the sample
189189

1-WebApp-OIDC/1-3-AnyOrgOrPersonal/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,14 @@ In the **appsettings.json** file:
159159
- update the `sslPort` of the `iisSettings` section to be `44321`
160160
- in the `applicationUrl` property of use `https://localhost:44321`
161161
162-
1. (Optional) If you don't have a custom `AccountController` to handle the *sign-in* and *sign-out* requests, you can use the `Microsoft.Identity.Web.UI` built-in one. For that, please include this change on **Startup.cs**:
162+
1. (Optional) If you don't have a custom `AccountController` to handle the *sign-in* and *sign-out* requests, you can use the `Microsoft.Identity.Web.UI` built-in one. For that, please include this change in **Startup.cs**:
163163

164164
- at the top of the file, add the following using directive:
165165

166166
```CSharp
167167
using Microsoft.Identity.Web.UI;
168168
```
169-
- in the `ConfigureServices` method, change the **AddControllersWithView** code snippet with this:
169+
- in the `ConfigureServices` method, change the **AddControllersWithView** code snippet to this:
170170

171171
```CSharp
172172
services.AddControllersWithViews(options =>
@@ -178,7 +178,7 @@ In the **appsettings.json** file:
178178
}).AddMicrosoftIdentityUI();
179179
```
180180

181-
- on **Views/Shared/_LoginPartial.cshtml**, change the **asp-area** tag to: `asp-area="MicrosoftIdentity"`
181+
- in **Views/Shared/_LoginPartial.cshtml**, change the **asp-area** tag to: `asp-area="MicrosoftIdentity"`
182182

183183
### Step 3: Run the sample
184184

1-WebApp-OIDC/1-4-Sovereign/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@ cd "1-WebApp-OIDC\1-4-Sovereign"
130130
- update the `sslPort` of the `iisSettings` section to be `44321`
131131
- in the `applicationUrl` property of use `https://localhost:44321`
132132
133-
1. (Optional) If you don't have a custom `AccountController` to handle the *sign-in* and *sign-out* requests, you can use the `Microsoft.Identity.Web.UI` built-in one. For that, please include this change on **Startup.cs**:
133+
1. (Optional) If you don't have a custom `AccountController` to handle the *sign-in* and *sign-out* requests, you can use the `Microsoft.Identity.Web.UI` built-in one. For that, please include this change in **Startup.cs**:
134134

135135
- at the top of the file, add the following using directive:
136136

137137
```CSharp
138138
using Microsoft.Identity.Web.UI;
139139
```
140-
- in the `ConfigureServices` method, change the **AddControllersWithView** code snippet with this:
140+
- in the `ConfigureServices` method, change the **AddControllersWithView** code snippet to this:
141141

142142
```CSharp
143143
services.AddControllersWithViews(options =>
@@ -149,7 +149,7 @@ cd "1-WebApp-OIDC\1-4-Sovereign"
149149
}).AddMicrosoftIdentityUI();
150150
```
151151

152-
- on **Views/Shared/_LoginPartial.cshtml**, change the **asp-area** tag to: `asp-area="MicrosoftIdentity"`
152+
- in **Views/Shared/_LoginPartial.cshtml**, change the **asp-area** tag to: `asp-area="MicrosoftIdentity"`
153153

154154
### Step 3: Run the sample
155155

0 commit comments

Comments
 (0)