cr feedback

This commit is contained in:
Ryan Nowak 2014-03-21 00:52:08 -07:00
parent 6610788b75
commit 1ca2203421
1 changed files with 1 additions and 1 deletions

View File

@ -35,10 +35,10 @@ namespace Microsoft.AspNet.Mvc.Razor
// The writer for the body is passed through the ViewContext, allowing things like HtmlHelpers // The writer for the body is passed through the ViewContext, allowing things like HtmlHelpers
// and ViewComponents to reference it. // and ViewComponents to reference it.
var oldWriter = context.Writer; var oldWriter = context.Writer;
context.Writer = bodyWriter;
try try
{ {
context.Writer = bodyWriter;
await ExecuteAsync(); await ExecuteAsync();
} }
finally finally