From 99eb8f06ad2dc878d653ca0f7966c13106ef1842 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Wed, 18 Feb 2015 10:07:52 -0800 Subject: [PATCH] Fixing typo in RazorPage doc comments --- src/Microsoft.AspNet.Mvc.Razor/RazorPage.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Microsoft.AspNet.Mvc.Razor/RazorPage.cs b/src/Microsoft.AspNet.Mvc.Razor/RazorPage.cs index a94bf9e728..ac44a95350 100644 --- a/src/Microsoft.AspNet.Mvc.Razor/RazorPage.cs +++ b/src/Microsoft.AspNet.Mvc.Razor/RazorPage.cs @@ -558,13 +558,14 @@ namespace Microsoft.AspNet.Mvc.Razor /// Invokes on writing out any buffered /// content to the . /// - /// A that represents the asynchronous flush operation and on + /// A that represents the asynchronous flush operation and on /// completion returns a . /// The value returned is a token value that allows FlushAsync to work directly in an HTML /// section. However the value does not represent the rendered content. - /// This method also writes out headers, so any modifications to headers must be done before FulshAsync is - /// called. For example, call to send anti-forgery cookie token - /// and X-Frame-Options header to client before this method flushes headers out. + /// This method also writes out headers, so any modifications to headers must be done before + /// is called. For example, call to send + /// anti-forgery cookie token and X-Frame-Options header to client before this method flushes headers out. + /// public async Task FlushAsync() { // If there are active writing scopes then we should throw. Cannot flush content that has the potential to