Skip to content

Commit d441426

Browse files
committed
PR comments
1 parent 10421d1 commit d441426

14 files changed

+14
-14
lines changed

src/Polly.Core/CircuitBreaker/OnCircuitClosedArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Polly.CircuitBreaker;
66
/// Arguments used by <see cref="CircuitBreakerStrategyOptions{TResult}.OnClosed"/> event.
77
/// </summary>
88
/// <remarks>
9-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
9+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
1010
/// </remarks>
1111
public readonly struct OnCircuitClosedArguments
1212
{

src/Polly.Core/CircuitBreaker/OnCircuitHalfOpenedArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Polly.CircuitBreaker;
66
/// Arguments used by <see cref="CircuitBreakerStrategyOptions{TResult}.OnHalfOpened"/> event.
77
/// </summary>
88
/// <remarks>
9-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
9+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
1010
/// </remarks>
1111
public readonly struct OnCircuitHalfOpenedArguments
1212
{

src/Polly.Core/CircuitBreaker/OnCircuitOpenedArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Polly.CircuitBreaker;
66
/// Arguments used by <see cref="CircuitBreakerStrategyOptions{TResult}.OnOpened"/> event.
77
/// </summary>
88
/// <remarks>
9-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
9+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
1010
/// </remarks>
1111
public readonly struct OnCircuitOpenedArguments
1212
{

src/Polly.Core/Fallback/OnFallbackArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Polly.Fallback;
44
/// Represents arguments used in fallback handling scenarios.
55
/// </summary>
66
/// <remarks>
7-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
7+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
88
/// </remarks>
99
public readonly struct OnFallbackArguments
1010
{

src/Polly.Core/Hedging/OnHedgingArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Polly.Hedging;
66
/// Represents arguments used by the on-hedging event.
77
/// </summary>
88
/// <remarks>
9-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
9+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
1010
/// </remarks>
1111
public readonly struct OnHedgingArguments
1212
{

src/Polly.Core/Retry/OnRetryArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Polly.Retry;
66
/// Represents the arguments used by <see cref="RetryStrategyOptions{TResult}.OnRetry"/> for handling the retry event.
77
/// </summary>
88
/// <remarks>
9-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
9+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
1010
/// </remarks>
1111
public readonly struct OnRetryArguments
1212
{

src/Polly.Core/Telemetry/ExecutionAttemptArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// Arguments that encapsulate the execution attempt for retries or hedging.
77
/// </summary>
88
/// <remarks>
9-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
9+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
1010
/// </remarks>
1111
public readonly struct ExecutionAttemptArguments
1212
{

src/Polly.Core/Telemetry/PipelineExecutedArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// Arguments that indicate the pipeline execution started.
77
/// </summary>
88
/// <remarks>
9-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
9+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
1010
/// </remarks>
1111
public readonly struct PipelineExecutedArguments
1212
{

src/Polly.Core/Telemetry/PipelineExecutingArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Arguments that indicate the pipeline execution started.
55
/// </summary>
66
/// <remarks>
7-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
7+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
88
/// </remarks>
99
public readonly struct PipelineExecutingArguments
1010
{

src/Polly.Core/Telemetry/TelemetryEventArguments.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/// <typeparam name="TResult">The type of result.</typeparam>
99
/// <typeparam name="TArgs">The arguments associated with the resilience event.</typeparam>
1010
/// <remarks>
11-
/// Always use constructor when creating this struct, otherwise we do not guarantee the binary compatibility.
11+
/// Always use the constructor when creating this struct, otherwise we do not guarantee binary compatibility.
1212
/// </remarks>
1313
public readonly struct TelemetryEventArguments<TResult, TArgs>
1414
{

0 commit comments

Comments
 (0)