Skip to content

Commit

Permalink
Fix documentation comment for CB's MinimumThroughput (#1654)
Browse files Browse the repository at this point in the history
Fix doc comment for CB's MinimumThroughput.
  • Loading branch information
peter-csala committed Sep 28, 2023
1 parent d7758d8 commit 679740d
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 is 0.1 (i.e. 10%). 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 679740d

Please sign in to comment.