Update RunExtensions.cs

small typo
This commit is contained in:
Jimmy Hannon 2016-04-14 14:49:09 +02:00
parent fd0505ffae
commit b0ebcc3aeb
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace Microsoft.AspNetCore.Builder
public static class RunExtensions public static class RunExtensions
{ {
/// <summary> /// <summary>
/// Adds a terminal middleware delagate to the application's request pipeline. /// Adds a terminal middleware delegate to the application's request pipeline.
/// </summary> /// </summary>
/// <param name="app">The <see cref="IApplicationBuilder"/> instance.</param> /// <param name="app">The <see cref="IApplicationBuilder"/> instance.</param>
/// <param name="handler">A delegate that handles the request.</param> /// <param name="handler">A delegate that handles the request.</param>
@ -31,4 +31,4 @@ namespace Microsoft.AspNetCore.Builder
app.Use(_ => handler); app.Use(_ => handler);
} }
} }
} }