From db04a8b50d0d75f97b2e00e897b6582ecae289c1 Mon Sep 17 00:00:00 2001 From: Willem van Ketwich Date: Sun, 28 Jul 2024 11:56:28 +1000 Subject: [PATCH] fix typo --- 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)