diff --git a/osu.Game/Rulesets/Scoring/HitResult.cs b/osu.Game/Rulesets/Scoring/HitResult.cs
index 6abf91e9d3..fc33ff9df2 100644
--- a/osu.Game/Rulesets/Scoring/HitResult.cs
+++ b/osu.Game/Rulesets/Scoring/HitResult.cs
@@ -87,15 +87,21 @@ public enum HitResult
SmallBonus = 254,
///
- /// Indicate a large bonus.
+ /// Indicates a large bonus.
///
[Description("L Bonus")]
[Order(8)]
LargeBonus = 320,
+ ///
+ /// Indicates a miss that should be ignored for scoring purposes.
+ ///
[Order(13)]
IgnoreMiss = 384,
+ ///
+ /// Indicates a hit that should be ignored for scoring purposes.
+ ///
[Order(12)]
IgnoreHit,
}