Skip to content

Commit

Permalink
nodetool: fix a typo in error message
Browse files Browse the repository at this point in the history
s/smaller then/smaller than/

Signed-off-by: Kefu Chai <[email protected]>

Closes #382
  • Loading branch information
tchaikov authored and nyh committed Mar 7, 2024
1 parent a0c3a0c commit e4878ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class TopPartitions extends NodeToolCmd
@Override
public void execute(NodeProbe probe)
{
checkArgument(topCount < size, "TopK count (-k) option must be smaller then the summary capacity (-s)");
checkArgument(topCount < size, "TopK count (-k) option must be smaller than the summary capacity (-s)");
PrintStream out = probe.output().out;
// generate the list of samplers
List<Sampler> targets = Lists.newArrayList();
Expand Down

0 comments on commit e4878ae

Please sign in to comment.