Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Update RunExtensions.cs #614

Merged
merged 1 commit into from
Apr 17, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Microsoft.AspNetCore.Builder
public static class RunExtensions
{
/// <summary>
/// Adds a terminal middleware delagate to the application's request pipeline.
/// Adds a terminal middleware delegate to the application's request pipeline.
/// </summary>
/// <param name="app">The <see cref="IApplicationBuilder"/> instance.</param>
/// <param name="handler">A delegate that handles the request.</param>
Expand All @@ -31,4 +31,4 @@ public static void Run(this IApplicationBuilder app, RequestDelegate handler)
app.Use(_ => handler);
}
}
}
}