Skip to content

Commit

Permalink
tyop
Browse files Browse the repository at this point in the history
  • Loading branch information
mgravell committed Nov 21, 2023
1 parent 752045e commit 01121a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/UsageBenchmark/CommandRewriteBenchmarks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ private sealed class RewriteCommand : CommandFactory<MyArgsType>
private readonly bool cached;
private RewriteCommand(bool cached) => this.cached = cached;
public static RewriteCommand Cached { get; } = new RewriteCommand(true);
public static RewriteCommand NonCached { get; } = new RewriteCommand(true);
public static RewriteCommand NonCached { get; } = new RewriteCommand(false);

public override void AddParameters(in UnifiedCommand command, MyArgsType args)
=> throw new NotSupportedException(); // we don't expect to get here (in reality, we would have both versions)
Expand Down

0 comments on commit 01121a8

Please sign in to comment.