Skip to content

Commit f3dfa0a

Browse files
Merge pull request #983 from tomaszek92/patch-1
Fix bracket in documentation
2 parents d144a0e + 7f10099 commit f3dfa0a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Polly/CircuitBreaker/AsyncAdvancedCircuitBreakerTResultSyntax.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static class AsyncAdvancedCircuitBreakerTResultSyntax
2121
/// </para>
2222
/// </summary>
2323
/// <param name="policyBuilder">The policy builder.</param>
24-
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure.</param>
24+
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure).</param>
2525
/// <param name="samplingDuration">The duration of the timeslice over which failure ratios are assessed.</param>
2626
/// <param name="minimumThroughput">The minimum throughput: this many actions or more must pass through the circuit in the timeslice, for statistics to be considered significant and the circuit-breaker to come into action.</param>
2727
/// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param>
@@ -57,7 +57,7 @@ public static AsyncCircuitBreakerPolicy<TResult> AdvancedCircuitBreakerAsync<TRe
5757
/// </para>
5858
/// </summary>
5959
/// <param name="policyBuilder">The policy builder.</param>
60-
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure.</param>
60+
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure).</param>
6161
/// <param name="samplingDuration">The duration of the timeslice over which failure ratios are assessed.</param>
6262
/// <param name="minimumThroughput">The minimum throughput: this many actions or more must pass through the circuit in the timeslice, for statistics to be considered significant and the circuit-breaker to come into action.</param>
6363
/// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param>
@@ -92,7 +92,7 @@ public static AsyncCircuitBreakerPolicy<TResult> AdvancedCircuitBreakerAsync<TRe
9292
/// </para>
9393
/// </summary>
9494
/// <param name="policyBuilder">The policy builder.</param>
95-
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure.</param>
95+
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure).</param>
9696
/// <param name="samplingDuration">The duration of the timeslice over which failure ratios are assessed.</param>
9797
/// <param name="minimumThroughput">The minimum throughput: this many actions or more must pass through the circuit in the timeslice, for statistics to be considered significant and the circuit-breaker to come into action.</param>
9898
/// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param>
@@ -131,7 +131,7 @@ public static AsyncCircuitBreakerPolicy<TResult> AdvancedCircuitBreakerAsync<TRe
131131
/// </para>
132132
/// </summary>
133133
/// <param name="policyBuilder">The policy builder.</param>
134-
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure.</param>
134+
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure).</param>
135135
/// <param name="samplingDuration">The duration of the timeslice over which failure ratios are assessed.</param>
136136
/// <param name="minimumThroughput">The minimum throughput: this many actions or more must pass through the circuit in the timeslice, for statistics to be considered significant and the circuit-breaker to come into action.</param>
137137
/// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param>
@@ -168,7 +168,7 @@ public static AsyncCircuitBreakerPolicy<TResult> AdvancedCircuitBreakerAsync<TRe
168168
/// </para>
169169
/// </summary>
170170
/// <param name="policyBuilder">The policy builder.</param>
171-
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure.</param>
171+
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure).</param>
172172
/// <param name="samplingDuration">The duration of the timeslice over which failure ratios are assessed.</param>
173173
/// <param name="minimumThroughput">The minimum throughput: this many actions or more must pass through the circuit in the timeslice, for statistics to be considered significant and the circuit-breaker to come into action.</param>
174174
/// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param>
@@ -206,7 +206,7 @@ public static AsyncCircuitBreakerPolicy<TResult> AdvancedCircuitBreakerAsync<TRe
206206
/// </para>
207207
/// </summary>
208208
/// <param name="policyBuilder">The policy builder.</param>
209-
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure.</param>
209+
/// <param name="failureThreshold">The failure threshold at which the circuit will break (a number between 0 and 1; eg 0.5 represents breaking if 50% or more of actions result in a handled failure).</param>
210210
/// <param name="samplingDuration">The duration of the timeslice over which failure ratios are assessed.</param>
211211
/// <param name="minimumThroughput">The minimum throughput: this many actions or more must pass through the circuit in the timeslice, for statistics to be considered significant and the circuit-breaker to come into action.</param>
212212
/// <param name="durationOfBreak">The duration the circuit will stay open before resetting.</param>

0 commit comments

Comments
 (0)