From 043f8fda61931ee23416bd68865f3623f3ce2ac2 Mon Sep 17 00:00:00 2001 From: cdavid Date: Wed, 10 May 2017 15:02:53 -0700 Subject: [PATCH] Fix typo (delegate) in documentation (#830) --- .../Extensions/UseExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Http.Abstractions/Extensions/UseExtensions.cs b/src/Microsoft.AspNetCore.Http.Abstractions/Extensions/UseExtensions.cs index d8791b8675..c0c9a0f6e5 100644 --- a/src/Microsoft.AspNetCore.Http.Abstractions/Extensions/UseExtensions.cs +++ b/src/Microsoft.AspNetCore.Http.Abstractions/Extensions/UseExtensions.cs @@ -13,7 +13,7 @@ namespace Microsoft.AspNetCore.Builder public static class UseExtensions { /// - /// 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. /// /// The instance. /// A function that handles the request or calls the given next function. @@ -30,4 +30,4 @@ namespace Microsoft.AspNetCore.Builder }); } } -} \ No newline at end of file +}