diff --git a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/IUseWebApiActionConventions.cs b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/IUseWebApiActionConventions.cs
index ab24396dd1..e2ac33be1a 100644
--- a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/IUseWebApiActionConventions.cs
+++ b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/IUseWebApiActionConventions.cs
@@ -4,7 +4,7 @@
namespace Microsoft.AspNetCore.Mvc.WebApiCompatShim
{
///
- /// Indicates actions without attribute routes in a controller use WebAPI routing conventions.
+ /// Indicates actions without attribute routes in a controller use ASP.NET Web API routing conventions.
///
public interface IUseWebApiActionConventions
{
diff --git a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/IUseWebApiParameterConventions.cs b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/IUseWebApiParameterConventions.cs
index 58e483dea6..1f74ef2fc6 100644
--- a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/IUseWebApiParameterConventions.cs
+++ b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/IUseWebApiParameterConventions.cs
@@ -4,8 +4,8 @@
namespace Microsoft.AspNetCore.Mvc.WebApiCompatShim
{
///
- /// Indicates the model binding system should use WebAPI conventions for parameters of a controller's actions. For
- /// example, bind simple types from the URI.
+ /// Indicates the model binding system should use ASP.NET Web API conventions for parameters of a controller's
+ /// actions. For example, bind simple types from the URI.
///
public interface IUseWebApiParameterConventions
{
diff --git a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/UseWebApiActionConventionsAttribute.cs b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/UseWebApiActionConventionsAttribute.cs
index ef9401f5d4..15a0725f50 100644
--- a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/UseWebApiActionConventionsAttribute.cs
+++ b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/UseWebApiActionConventionsAttribute.cs
@@ -6,7 +6,7 @@ using System;
namespace Microsoft.AspNetCore.Mvc.WebApiCompatShim
{
///
- /// Indicates actions without attribute routes in a controller use WebAPI routing conventions. w
+ /// Indicates actions without attribute routes in a controller use ASP.NET Web API routing conventions.
///
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class UseWebApiActionConventionsAttribute : Attribute, IUseWebApiActionConventions
diff --git a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/UseWebApiParameterConventionsAttribute.cs b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/UseWebApiParameterConventionsAttribute.cs
index f68ae9d002..3626945271 100644
--- a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/UseWebApiParameterConventionsAttribute.cs
+++ b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/Conventions/UseWebApiParameterConventionsAttribute.cs
@@ -6,8 +6,8 @@ using System;
namespace Microsoft.AspNetCore.Mvc.WebApiCompatShim
{
///
- /// Indicates the model binding system should use WebAPI conventions for parameters of a controller's actions. For
- /// example, bind simple types from the URI.
+ /// Indicates the model binding system should use ASP.NET Web API conventions for parameters of a controller's
+ /// actions. For example, bind simple types from the URI.
///
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class UseWebApiParameterConventionsAttribute : Attribute, IUseWebApiParameterConventions
diff --git a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/ParameterBinding/IOptionalBinderMetadata.cs b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/ParameterBinding/IOptionalBinderMetadata.cs
index 05cfc09d4d..367fd52614 100644
--- a/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/ParameterBinding/IOptionalBinderMetadata.cs
+++ b/src/Microsoft.AspNetCore.Mvc.WebApiCompatShim/ParameterBinding/IOptionalBinderMetadata.cs
@@ -6,18 +6,18 @@ namespace Microsoft.AspNetCore.Mvc.ModelBinding
///
///
/// An type that designates an optional parameter for the purposes
- /// of WebAPI action overloading. Optional parameters do not participate in overloading, and
+ /// of ASP.NET Web API action overloading. Optional parameters do not participate in overloading, and
/// do not have to have a value for the action to be selected.
///
///
- /// This has no impact when used without WebAPI action overloading.
+ /// This has no impact when used without ASP.NET Web API action overloading.
///
///
public interface IOptionalBinderMetadata
{
///
- /// Gets a value indicating whether the parameter participates in WebAPI action overloading. If true,
- /// the parameter does not participate in overloading. Otherwise, it does.
+ /// Gets a value indicating whether the parameter participates in ASP.NET Web API action overloading. If
+ /// true, the parameter does not participate in overloading. Otherwise, it does.
///
bool IsOptional { get; }
}