Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Willem van Ketwich authored and Willem van Ketwich committed Jul 28, 2024
1 parent d9158cd commit db04a8b
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 db04a8b

Please sign in to comment.