diff --git a/Content.Shared/_White/Weapons/Melee/Events/MeleeAttemptedEvent.cs b/Content.Shared/_White/Weapons/Melee/Events/MeleeAttemptedEvent.cs
index c5a61947c9..0c62977913 100644
--- a/Content.Shared/_White/Weapons/Melee/Events/MeleeAttemptedEvent.cs
+++ b/Content.Shared/_White/Weapons/Melee/Events/MeleeAttemptedEvent.cs
@@ -19,7 +19,7 @@ public record struct MeleeAttemptedEvent
public bool Cancelled { get; private set; }
- ///
+ ///
/// Prevent the weapon from attacking
///
public void Cancel()
@@ -27,7 +27,7 @@ public void Cancel()
Cancelled = true;
}
- ///
+ ///
/// Allow the weapon to attack again, only use if you know what you are doing
///
public void Uncancel()