diff --git a/src/Flurl.Http/Configuration/FlurlClientCache.cs b/src/Flurl.Http/Configuration/FlurlClientCache.cs index cca0dceb..18cd085d 100644 --- a/src/Flurl.Http/Configuration/FlurlClientCache.cs +++ b/src/Flurl.Http/Configuration/FlurlClientCache.cs @@ -85,7 +85,7 @@ public virtual IFlurlClient Get(string name) { throw new ArgumentException($"A client named '{name}' was not found. Either preconfigure the client using Add (typically at startup), or use GetOrAdd to add/configure one on demand when needed."); if (cli.Value.IsDisposed) - throw new Exception($"A client named '{name}' was not found but has been disposed and cannot be reused."); + throw new Exception($"A client named '{name}' was found but has been disposed and cannot be reused."); return cli.Value; }