Fix typo (delegate) in documentation (#830)

This commit is contained in:
cdavid 2017-05-10 15:02:53 -07:00 committed by Chris R
parent f5107596a5
commit 043f8fda61
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ namespace Microsoft.AspNetCore.Builder
public static class UseExtensions
{
/// <summary>
/// Adds a middleware delagate defined in-line to the application's request pipeline.
/// Adds a middleware delegate defined in-line to the application's request pipeline.
/// </summary>
/// <param name="app">The <see cref="IApplicationBuilder"/> instance.</param>
/// <param name="middleware">A function that handles the request or calls the given next function.</param>
@ -30,4 +30,4 @@ namespace Microsoft.AspNetCore.Builder
});
}
}
}
}