diff --git a/src/Umbraco.Core/Models/ContentTypeBase.cs b/src/Umbraco.Core/Models/ContentTypeBase.cs index a266c55e22..f92e562536 100644 --- a/src/Umbraco.Core/Models/ContentTypeBase.cs +++ b/src/Umbraco.Core/Models/ContentTypeBase.cs @@ -410,7 +410,7 @@ namespace Umbraco.Core.Models /// /// Removes a PropertyGroup from the current ContentType /// - /// Name of the to remove + /// Name of the to remove public void RemovePropertyGroup(string propertyGroupName) { PropertyGroups.RemoveItem(propertyGroupName); diff --git a/src/Umbraco.Core/Models/IContentTypeBase.cs b/src/Umbraco.Core/Models/IContentTypeBase.cs index e68c9884d8..33effce2d9 100644 --- a/src/Umbraco.Core/Models/IContentTypeBase.cs +++ b/src/Umbraco.Core/Models/IContentTypeBase.cs @@ -67,7 +67,7 @@ namespace Umbraco.Core.Models /// /// Removes a PropertyGroup from the current ContentType /// - /// Name of the to remove + /// Name of the to remove void RemovePropertyGroup(string propertyGroupName); ///