diff --git a/src/Umbraco.Core/Auditing/IdentityAuditEventArgs.cs b/src/Umbraco.Core/Auditing/IdentityAuditEventArgs.cs
index dc91bb77b0..e4fed75e33 100644
--- a/src/Umbraco.Core/Auditing/IdentityAuditEventArgs.cs
+++ b/src/Umbraco.Core/Auditing/IdentityAuditEventArgs.cs
@@ -16,7 +16,7 @@ namespace Umbraco.Core.Auditing
public AuditEvent Action { get; set; }
///
- /// Current data/time in UTC format
+ /// Current date/time in UTC format
///
public DateTime DateTimeUtc { get; private set; }
@@ -31,7 +31,7 @@ namespace Umbraco.Core.Auditing
public int AffectedUser { get; set; }
///
- /// If a user is perfoming an action on a different user then this will be set, otherwise it will be -1
+ /// If a user is perfoming an action on a different user, then this will be set. Otherwise it will be -1
///
public int PerformingUser { get; set; }
@@ -49,7 +49,7 @@ namespace Umbraco.Core.Auditing
/// Sets the properties on the event being raised, all parameters are optional except for the action being performed
///
/// An action based on the AuditEvent enum
- /// The client's IP address. This is usually automatically set but could be overridden is necessary
+ /// The client's IP address. This is usually automatically set but could be overridden if necessary
/// The Id of the user performing the action (if different from the user affected by the action)
public IdentityAuditEventArgs(AuditEvent action, string ipAddress = "", int performingUser = -1)
{