From bf730597dc50f78de3b94dc90e65c9dc62c24ff2 Mon Sep 17 00:00:00 2001 From: peter-csala Date: Thu, 2 Nov 2023 11:44:21 +0100 Subject: [PATCH] Apply suggestion --- docs/strategies/circuit-breaker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/strategies/circuit-breaker.md b/docs/strategies/circuit-breaker.md index d818b80e78a..fc003c89f1c 100644 --- a/docs/strategies/circuit-breaker.md +++ b/docs/strategies/circuit-breaker.md @@ -615,5 +615,5 @@ else **Reasoning**: -- The `ExecuteOutcomeAsync` is a low-allocation API which does not throw exception rather captures it inside the `Exception` property of the `Outcome` data structure. +- The `ExecuteOutcomeAsync` is a low-allocation API which does not throw exceptions; rather it captures them inside an `Outcome` data structure. - Since you are calling one of the `Execute` methods, that's why the circuit breaker can transition into the `HalfOpen` state.