From 78c05599cb0811de047fb6e854eb196f33e161ca Mon Sep 17 00:00:00 2001 From: Martin Tomka Date: Wed, 14 Jun 2023 14:49:10 +0200 Subject: [PATCH] PR comments --- src/Polly.Core/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Polly.Core/README.md b/src/Polly.Core/README.md index 2ca00e832d..179a33918a 100644 --- a/src/Polly.Core/README.md +++ b/src/Polly.Core/README.md @@ -136,7 +136,7 @@ This API exposes the following builders: - [ResilienceStrategyBuilder](ResilienceStrategyBuilder.cs): Used to create resilience strategies that can execute all types of callbacks. In general, these strategies only handle exceptions. - [ResilienceStrategyBuilder](ResilienceStrategyBuilder.TResult.cs): Used to create generic resilience strategies that can only execute callbacks that return the same result type. -- [ResilienceStrategyBuilderBase](ResilienceStrategyBuilderBase.cs): The base class for both builders above. You can use is as a target for strategy extension that work for both builders above. +- [ResilienceStrategyBuilderBase](ResilienceStrategyBuilderBase.cs): The base class for both builders above. You can use it as a target for strategy extensions that work for both builders above. To create a strategy or pipeline of strategies you chain various extensions for `ResilienceStrategyBuilder` followed by the `Build` call: