From 2c49df8cfccd45c810fb6fd0a6c9b4eeb8e9eed5 Mon Sep 17 00:00:00 2001 From: Igor94 Date: Mon, 28 Aug 2023 12:26:34 +0300 Subject: [PATCH] Apply suggestions from code review (#1290) Co-authored-by: Martin Costello --- src/Polly/Registry/PolicyRegistry.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Polly/Registry/PolicyRegistry.cs b/src/Polly/Registry/PolicyRegistry.cs index 8e1b96343b5..e9a5106c403 100644 --- a/src/Polly/Registry/PolicyRegistry.cs +++ b/src/Polly/Registry/PolicyRegistry.cs @@ -158,13 +158,13 @@ public bool TryRemove(string key, out TPolicy policy) where TPolicy : I /// /// Compares the existing policy for the specified key with a specified policy, and if they are equal, updates the policy with a third value. /// - /// The type of the policy + /// The type of the policy. /// The key whose value is compared with comparisonPolicy, and possibly replaced. /// The policy that replaces the value for the specified , if the comparison results in equality. /// The policy that is compared to the existing policy at the specified key. /// - /// true if the value with was equal to and - /// replaced with ; otherwise, false. + /// if the value with was equal to and + /// replaced with ; otherwise, . /// public bool TryUpdate(string key, TPolicy newPolicy, TPolicy comparisonPolicy) where TPolicy : IsPolicy {