diff --git a/src/Umbraco.Core/Services/UserService.cs b/src/Umbraco.Core/Services/UserService.cs
index 89232f815e..a646b2d52a 100644
--- a/src/Umbraco.Core/Services/UserService.cs
+++ b/src/Umbraco.Core/Services/UserService.cs
@@ -228,9 +228,9 @@ namespace Umbraco.Core.Services
}
///
- /// Deletes an
+ /// Disables an
///
- /// to Delete
+ /// to disable
public void Delete(IUser membershipUser)
{
//disable
@@ -712,7 +712,7 @@ namespace Umbraco.Core.Services
/// Id of the User to retrieve
///
public IProfile GetProfileById(int id)
- {
+ {
//This is called a TON. Go get the full user from cache which should already be IProfile
var fullUser = GetUserById(id);
var asProfile = fullUser as IProfile;