diff --git a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml
index 7630d28002a..9bcbcddc6d6 100644
--- a/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml
+++ b/xml/Microsoft.Extensions.Http.Resilience/HttpStandardResilienceOptions.xml
@@ -44,8 +44,25 @@
Bulkhead -> Total Request Timeout -> Retry -> Circuit Breaker -> Attempt Timeout.
The configuration of each pipeline is initialized with the default options per type. The request goes through these strategies:
- - Total request timeout pipeline applies an overall timeout to the execution,
- ensuring that the request including hedging attempts, does not exceed the configured limit.
- The retry pipeline retries the request in case the dependency is slow or returns a transient error.
- The bulkhead pipeline limits the maximum number of concurrent requests being send to the dependency.
- The circuit breaker blocks the execution if too many direct failures or timeouts are detected.
- The attempt timeout pipeline limits each request attempt duration and throws if its exceeded.
+
+ -
+ The bulkhead pipeline limits the maximum number of concurrent requests being send to the dependency.
+
+ -
+ Total request timeout pipeline applies an overall timeout to the execution,
+ ensuring that the request including hedging attempts, does not exceed the configured limit.
+
+ -
+ The retry pipeline retries the request in case the dependency is slow or returns a transient error.
+
+ -
+ The circuit breaker blocks the execution if too many direct failures or timeouts are detected.
+
+ -
+ The attempt timeout pipeline limits each request attempt duration and throws if its exceeded.
+
+
+