Fix spelling error

This commit is contained in:
smoogipoo 2017-12-26 20:01:02 +09:00
parent 0c4e4012f8
commit d479955e20
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class ControlPointInfo
/// </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()