Skip to content

Commit

Permalink
fix typo (#2766)
Browse files Browse the repository at this point in the history
Co-authored-by: Willem van Ketwich <REPLACE_EMAIL>
  • Loading branch information
wilvk authored Jul 28, 2024
1 parent d9158cd commit 1e40509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StackExchange.Redis/Configuration/LoggingTunnel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1e40509

Please sign in to comment.