[Modify] Edit it

This commit is contained in:
sta 2019-09-11 22:05:41 +09:00
parent 874e64d886
commit e147aff46a

View File

@ -1802,13 +1802,13 @@ namespace WebSocketSharp
} }
/// <summary> /// <summary>
/// Executes the specified <see cref="Action"/> delegate <paramref name="n"/> times. /// Executes the specified delegate the specified times.
/// </summary> /// </summary>
/// <param name="n"> /// <param name="n">
/// A <see cref="long"/> is the number of times to execute. /// A <see cref="long"/> that specifies the number of times to execute.
/// </param> /// </param>
/// <param name="action"> /// <param name="action">
/// An <see cref="Action"/> delegate that references the method(s) to execute. /// An <see cref="Action"/> delegate to execute.
/// </param> /// </param>
public static void Times (this long n, Action action) public static void Times (this long n, Action action)
{ {