Skip to content

Commit

Permalink
clenaup
Browse files Browse the repository at this point in the history
  • Loading branch information
martintmk committed May 16, 2023
1 parent d355bf9 commit 380244e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Polly.Core/Retry/RetryStrategyOptions.TResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class RetryStrategyOptions<TResult> : ResilienceStrategyOptions
public OutcomePredicate<ShouldRetryArguments, TResult> ShouldRetry { get; set; } = new();

/// <summary>
/// Gets or sets the <see cref="RetryDelayGenerator"/> instance that is used to generated the delay between retries.
/// Gets or sets the generator instance that is used to calculate the time between retries.
/// </summary>
/// <remarks>
/// By default, the generator is empty and it does not affect the delay between retries.
Expand Down
4 changes: 2 additions & 2 deletions src/Polly.Core/Retry/RetryStrategyOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class RetryStrategyOptions : ResilienceStrategyOptions
/// Gets or sets the maximum number of retries to use, in addition to the original call.
/// </summary>
/// <remarks>
/// Defaults to 3 retries. For infinite retries use <c>InfiniteRetry</c> (-1).
/// Defaults to 3 retries. For infinite retries use <see cref="InfiniteRetryCount"/> (-1).
/// </remarks>
[Range(InfiniteRetryCount, RetryConstants.MaxRetryCount)]
public int RetryCount { get; set; } = RetryConstants.DefaultRetryCount;
Expand Down Expand Up @@ -71,7 +71,7 @@ public class RetryStrategyOptions : ResilienceStrategyOptions
public OutcomePredicate<ShouldRetryArguments> ShouldRetry { get; set; } = new();

/// <summary>
/// Gets or sets the <see cref="RetryDelayGenerator"/> instance that is used to generated the delay between retries.
/// Gets or sets the generator instance that is used to calculate the time between retries.
/// </summary>
/// <remarks>
/// By default, the generator is empty and it does not affect the delay between retries.
Expand Down

0 comments on commit 380244e

Please sign in to comment.