diff --git a/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs b/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs
index f159d28eed..24ee3f629d 100644
--- a/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs
+++ b/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs
@@ -51,12 +51,12 @@ namespace osu.Game.Rulesets.Objects.Drawables
public override bool PropagateNonPositionalInputSubTree => HandleUserInput;
///
- /// Invoked when a has been applied by this or a nested .
+ /// Invoked by this or a nested after a has been applied.
///
public event Action OnNewResult;
///
- /// Invoked when a is being reverted by this or a nested .
+ /// Invoked by this or a nested prior to a being reverted.
///
public event Action OnRevertResult;
@@ -236,7 +236,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
#region State / Transform Management
///
- /// Bind to apply a custom state which can override the default implementation.
+ /// Invoked by this or a nested to apply a custom state that can override the default implementation.
///
public event Action ApplyCustomUpdateState;