diff --git a/src/Microsoft.AspNet.Mvc.Razor/IRazorViewFactory.cs b/src/Microsoft.AspNet.Mvc.Razor/IRazorViewFactory.cs
index 91cb4c73c2..67f7334e70 100644
--- a/src/Microsoft.AspNet.Mvc.Razor/IRazorViewFactory.cs
+++ b/src/Microsoft.AspNet.Mvc.Razor/IRazorViewFactory.cs
@@ -15,7 +15,7 @@ namespace Microsoft.AspNet.Mvc.Razor
///
/// The instance to execute.
/// Determines if the view is to be executed as a partial.
- /// A instance that renders the contents of the specified
+ /// A instance that renders the contents of the
IView GetView([NotNull] IRazorPage page, bool isPartial);
}
}
\ No newline at end of file
diff --git a/test/Microsoft.AspNet.Mvc.Razor.Test/RazorViewFactoryTest.cs b/test/Microsoft.AspNet.Mvc.Razor.Test/RazorViewFactoryTest.cs
index 27849b1fae..b3cb915c64 100644
--- a/test/Microsoft.AspNet.Mvc.Razor.Test/RazorViewFactoryTest.cs
+++ b/test/Microsoft.AspNet.Mvc.Razor.Test/RazorViewFactoryTest.cs
@@ -1,14 +1,8 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
-using System;
-using System.IO;
-using System.Threading.Tasks;
-using Xunit;
-using Microsoft.AspNet.Mvc.ModelBinding;
-using Microsoft.AspNet.Mvc.Rendering;
-using Microsoft.AspNet.PipelineCore;
using Moq;
+using Xunit;
namespace Microsoft.AspNet.Mvc.Razor.Test
{