diff --git a/src/Microsoft.AspNet.Mvc.Core/MvcOptions.cs b/src/Microsoft.AspNet.Mvc.Core/MvcOptions.cs
index c35ba08379..4afa9f3bf0 100644
--- a/src/Microsoft.AspNet.Mvc.Core/MvcOptions.cs
+++ b/src/Microsoft.AspNet.Mvc.Core/MvcOptions.cs
@@ -59,7 +59,8 @@ namespace Microsoft.AspNet.Mvc
}
///
- /// Used to specify mapping between the URL Format and corresponding .
+ /// Used to specify mapping between the URL Format and corresponding
+ /// .
///
public FormatterMappings FormatterMappings { get; }
diff --git a/src/Microsoft.AspNet.Mvc.ModelBinding/ModelMetadata.cs b/src/Microsoft.AspNet.Mvc.ModelBinding/ModelMetadata.cs
index f3c91e3b5b..4e7434679b 100644
--- a/src/Microsoft.AspNet.Mvc.ModelBinding/ModelMetadata.cs
+++ b/src/Microsoft.AspNet.Mvc.ModelBinding/ModelMetadata.cs
@@ -92,7 +92,7 @@ namespace Microsoft.AspNet.Mvc.ModelBinding
public abstract bool ConvertEmptyStringToNull { get; }
///
- /// Gets the name of the 's datatype. Overrides in some
+ /// Gets the name of the model's datatype. Overrides in some
/// display scenarios.
///
/// null unless set manually or through additional metadata e.g. attributes.
@@ -105,7 +105,7 @@ namespace Microsoft.AspNet.Mvc.ModelBinding
///
/// Gets the composite format (see
- /// http://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to display the .
+ /// http://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to display the model.
///
public abstract string DisplayFormatString { get; }
@@ -116,7 +116,7 @@ namespace Microsoft.AspNet.Mvc.ModelBinding
///
/// Gets the composite format (see
- /// http://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to edit the .
+ /// http://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to edit the model.
///
public abstract string EditFormatString { get; }