diff --git a/osu.Game.Modes.Osu/Objects/SliderCurve.cs b/osu.Game.Modes.Osu/Objects/SliderCurve.cs index 4e3fe34a1d..62931a7356 100644 --- a/osu.Game.Modes.Osu/Objects/SliderCurve.cs +++ b/osu.Game.Modes.Osu/Objects/SliderCurve.cs @@ -168,7 +168,8 @@ namespace osu.Game.Modes.Osu.Objects /// to 1 (end of the slider) and stores the generated path in the given list. /// /// The list to be filled with the computed curve. - /// Ranges from 0 (beginning of the slider) to 1 (end of the slider). + /// Start progress. Ranges from 0 (beginning of the slider) to 1 (end of the slider). + /// End progress. Ranges from 0 (beginning of the slider) to 1 (end of the slider). public void GetPathToProgress(List path, double p0, double p1) { double d0 = progressToDistance(p0);