Skip to content

Commit 3477daf

Browse files
committed
Merge branch 'master' of https://github.com/aspnet/aspnetcore
2 parents 2d48eeb + 94dd5ef commit 3477daf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Contributor documentation
22
=========================
33

44
The primary audience for documentation in this folder is contributors to ASP.NET Core.
5-
If you are looking for documentation on to *use* ASP.NET Core, go to <https://docs.asp.net>.
5+
If you are looking for documentation on how to *use* ASP.NET Core, go to <https://docs.asp.net>.

src/Hosting/Hosting/src/WebHostBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,8 @@ public IWebHost Build()
186186
}
187187
catch
188188
{
189-
// Dispose the host if there's a failure to initialize, this should clean up
190-
// will dispose services that were constructed until the exception was thrown
189+
// Dispose the host if there's a failure to initialize, this should dispose
190+
// services that were constructed until the exception was thrown
191191
host.Dispose();
192192
throw;
193193
}

src/Http/WebUtilities/src/HttpResponseStreamWriter.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public override Task WriteAsync(char[] values, int index, int count)
210210
private async Task WriteAsyncAwaited(char[] values, int index, int count)
211211
{
212212
Debug.Assert(count > 0);
213-
Debug.Assert(_charBufferSize - _charBufferCount > count);
213+
Debug.Assert(_charBufferSize - _charBufferCount < count);
214214

215215
while (count > 0)
216216
{
@@ -220,7 +220,6 @@ private async Task WriteAsyncAwaited(char[] values, int index, int count)
220220
}
221221

222222
CopyToCharBuffer(values, ref index, ref count);
223-
Debug.Assert(count == 0);
224223
}
225224
}
226225

src/Identity/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ The previous versions of Identity for MVC5 and lower, previously available on Co
2929
* [ASP.NET Identity Firebase Provider](https://github.com/aguacongas/Identity.Firebase)
3030
* [ASP.NET Identity Redis Provider](https://github.com/aguacongas/Identity.Redis)
3131
* [ASP.NET Identity DocumentDB](https://github.com/FelschR/AspNetCore.Identity.DocumentDB)
32+
* [ASP.NET Identity Amazon Cognito Provider](https://github.com/aws/aws-aspnet-cognito-identity-provider)

0 commit comments

Comments
 (0)