1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 02:02:53 +08:00

Fix spelling error

This commit is contained in:
smoogipoo 2017-12-26 20:01:02 +09:00
parent 0c4e4012f8
commit d479955e20

View File

@ -95,7 +95,7 @@ namespace osu.Game.Beatmaps.ControlPoints
/// </summary>
/// <param name="list">The list to search.</param>
/// <param name="time">The time to find the control point at.</param>
/// <param name="defaultPoint">The control point to use when there is not control point before <paramref name="time"/>.</param>
/// <param name="defaultPoint">The control point to use when there is no control point before <paramref name="time"/>.</param>
/// <returns>The active control point at <paramref name="time"/>.</returns>
private T binarySearch<T>(SortedList<T> list, double time, T defaultPoint)
where T : ControlPoint, new()