Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter-Juhasz authored Jun 18, 2024
1 parent 5f40efe commit 008767f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WordlistTool.Core/Transforms/Library/Cross.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public CrossTransform(string? separator)

public async Task ExecuteAsync(IReadOnlyList<InputOptions> inputs, OutputOptions output, CancellationToken cancellationToken)
{
if (inputs is { Count: not 1 or 2 })
if (inputs is { Count: not (1 or 2) })
{
throw new NotSupportedException();
}
Expand All @@ -35,4 +35,4 @@ public async Task ExecuteAsync(IReadOnlyList<InputOptions> inputs, OutputOptions
}
}
}
}
}

0 comments on commit 008767f

Please sign in to comment.