diff --git a/src/Umbraco.Core/Models/ContentTypeBase.cs b/src/Umbraco.Core/Models/ContentTypeBase.cs index 38676560b1..aba4ef66a9 100644 --- a/src/Umbraco.Core/Models/ContentTypeBase.cs +++ b/src/Umbraco.Core/Models/ContentTypeBase.cs @@ -480,7 +480,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 4c3adf83d7..89fca20b8e 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); ///