Skip to content

Commit

Permalink
Fix doc comment for CB's MinimumThroughput
Browse files Browse the repository at this point in the history
  • Loading branch information
peter.csala committed Sep 28, 2023
1 parent c832690 commit 607a6a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class CircuitBreakerStrategyOptions<TResult> : ResilienceStrategyOptions
/// for statistics to be considered significant and the circuit-breaker to come into action.
/// </summary>
/// <value>
/// The default value 100. The value must be 2 or greater.
/// The default value is 100. The value must be 2 or greater.
/// </value>
[Range(CircuitBreakerConstants.MinimumValidThroughput, int.MaxValue)]
public int MinimumThroughput { get; set; } = CircuitBreakerConstants.DefaultMinimumThroughput;
Expand Down

0 comments on commit 607a6a5

Please sign in to comment.