diff --git a/osu.Game/Rulesets/Mods/ModAdaptiveSpeed.cs b/osu.Game/Rulesets/Mods/ModAdaptiveSpeed.cs
index 78839ea692..c28283d0bb 100644
--- a/osu.Game/Rulesets/Mods/ModAdaptiveSpeed.cs
+++ b/osu.Game/Rulesets/Mods/ModAdaptiveSpeed.cs
@@ -73,13 +73,13 @@ namespace osu.Game.Rulesets.Mods
///
/// The number of most recent track rates (approximated from how early/late each object was hit relative to the previous object)
- /// which should be averaged to calculate the instantaneous value of .
+ /// which should be averaged to calculate .
///
private const int recent_rate_count = 6;
///
/// Stores the most recent approximated track rates
- /// which are averaged to calculate the instantaneous value of .
+ /// which are averaged to calculate the value of .
///
///
/// This list is used as a double-ended queue with fixed capacity