We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be39c8 commit 945ed18Copy full SHA for 945ed18
src/Client/Core/PurgeResult.cs
@@ -14,7 +14,7 @@ public class PurgeResult
14
/// <param name="count">The count of instances purged.</param>
15
public PurgeResult(int count)
16
{
17
- Check.Argument(count > 0, nameof(count), "Count must be non-negative");
+ Check.Argument(count >= 0, nameof(count), "Count must be non-negative");
18
this.PurgedInstanceCount = count;
19
}
20
0 commit comments