From ae7547bbdafdb7b3bdaae3c9386a423fd8f42ea1 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Wed, 15 Mar 2017 12:59:19 +0900 Subject: [PATCH] Fix up distance -> positional length comments. --- osu.Game/Modes/Objects/Types/IHasDistance.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Modes/Objects/Types/IHasDistance.cs b/osu.Game/Modes/Objects/Types/IHasDistance.cs index 71c53ed7b0..87863e64e6 100644 --- a/osu.Game/Modes/Objects/Types/IHasDistance.cs +++ b/osu.Game/Modes/Objects/Types/IHasDistance.cs @@ -4,12 +4,12 @@ namespace osu.Game.Modes.Objects.Types { /// - /// A HitObject that has a distance. + /// A HitObject that has a positional length. /// public interface IHasDistance : IHasEndTime { /// - /// The distance of the HitObject. + /// The positional length of the HitObject. /// double Distance { get; } }