Merge pull request #614 from JimmyHannon/patch-1

Update RunExtensions.cs
This commit is contained in:
David Fowler 2016-04-17 01:20:11 -07:00
commit f9637430d8
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);
} }
} }
} }