[Modify] Polish it

This commit is contained in:
sta 2019-09-14 22:01:18 +09:00
parent 5073993dd4
commit 77d67feaf9

View File

@ -1848,7 +1848,7 @@ namespace WebSocketSharp
/// </param>
public static void Times (this ulong n, Action action)
{
if (n <= 0)
if (n == 0)
return;
if (action == null)