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

Fix typo (delegate) in documentation #830

Merged
merged 1 commit into from
May 10, 2017
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 @@ -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>
Expand All @@ -30,4 +30,4 @@ public static IApplicationBuilder Use(this IApplicationBuilder app, Func<HttpCon
});
}
}
}
}