Skip to content

Commit 1e40509

Browse files
authored
fix typo (#2766)
Co-authored-by: Willem van Ketwich <REPLACE_EMAIL>
1 parent d9158cd commit 1e40509

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StackExchange.Redis/Configuration/LoggingTunnel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ internal DirectoryLoggingTunnel(string path, ConfigurationOptions? options = nul
287287
: base(options, tail)
288288
{
289289
this.path = path;
290-
if (!Directory.Exists(path)) throw new InvalidOperationException("Directly does not exist: " + path);
290+
if (!Directory.Exists(path)) throw new InvalidOperationException("Directory does not exist: " + path);
291291
}
292292

293293
protected override Stream Log(Stream stream, EndPoint endpoint, ConnectionType connectionType)

0 commit comments

Comments
 (0)