[Modify] Edit it

This commit is contained in:
sta 2019-09-09 22:48:21 +09:00
parent 7dae8486ad
commit cb9d0254b5

View File

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