From 1e405090ca0b1869088ee48e82ad294c9d4b8339 Mon Sep 17 00:00:00 2001 From: Willem van Ketwich Date: Sun, 28 Jul 2024 16:48:44 +1000 Subject: [PATCH] fix typo (#2766) Co-authored-by: Willem van Ketwich --- src/StackExchange.Redis/Configuration/LoggingTunnel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StackExchange.Redis/Configuration/LoggingTunnel.cs b/src/StackExchange.Redis/Configuration/LoggingTunnel.cs index a058a522c..a30dedf85 100644 --- a/src/StackExchange.Redis/Configuration/LoggingTunnel.cs +++ b/src/StackExchange.Redis/Configuration/LoggingTunnel.cs @@ -287,7 +287,7 @@ internal DirectoryLoggingTunnel(string path, ConfigurationOptions? options = nul : base(options, tail) { this.path = path; - if (!Directory.Exists(path)) throw new InvalidOperationException("Directly does not exist: " + path); + if (!Directory.Exists(path)) throw new InvalidOperationException("Directory does not exist: " + path); } protected override Stream Log(Stream stream, EndPoint endpoint, ConnectionType connectionType)