From 4256d4b82c105dd1255e4a3c2b947b163aa14758 Mon Sep 17 00:00:00 2001 From: Adam Novak Date: Fri, 15 Sep 2023 16:42:24 +0200 Subject: [PATCH] Rename policies to strategies --- docs/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/index.md b/docs/index.md index cbbbe6739ba..ab23b25bd54 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,7 +2,7 @@ ![Polly logo](https://raw.github.com/App-vNext/Polly/main/Polly-Logo.png) -Polly is a powerful library for .NET that helps you handle transient faults and improve the resilience of your applications. With Polly, you can easily define and apply policies such as Retry, Circuit Breaker, Hedging, Timeout, Rate Limiter and Fallback to handle failures and slowdowns in a fluent and thread-safe way. +Polly is a powerful library for .NET that helps you handle transient faults and improve the resilience of your applications. With Polly, you can easily define and apply strategies such as Retry, Circuit Breaker, Hedging, Timeout, Rate Limiter and Fallback to handle failures and slowdowns in a fluent and thread-safe way. Polly is part of the [.NET Foundation](https://www.dotnetfoundation.org/about)! @@ -27,11 +27,11 @@ Polly is easy to install and use. You can follow the [getting started](getting-s Polly has a rich documentation that covers various topics, such as: -- [Resilience strategies](strategies/index.md): How to combine and reuse policies in a flexible and modular way. -- [Resilience pipelines](pipelines/index.md): How to combine and reuse policies in a flexible and modular way. -- [Telemetry and monitoring](advanced/telemetry.md): How to access and analyze the data generated by Polly policies and pipelines. +- [Resilience strategies](strategies/index.md): How to combine and reuse strategies in a flexible and modular way. +- [Resilience pipelines](pipelines/index.md): How to combine and reuse strategies in a flexible and modular way. +- [Telemetry and monitoring](advanced/telemetry.md): How to access and analyze the data generated by Polly strategies and pipelines. - [Dependency injection](advanced/dependency-injection.md): How to integrate Polly with dependency injection frameworks and containers. -- [Extensibility](advanced/extensibility.md): How to create and use custom policies and extensions for Polly. +- [Extensibility](advanced/extensibility.md): How to create and use custom strategies and extensions for Polly. - [Chaos engineering](advanced/simmy.md): How to use Polly to inject faults and test the resilience of your system. You can also find many resources and community contributions, such as: