Skip to content

Commit b017321

Browse files
not
1 parent 7bc4a87 commit b017321

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/tree

1 file changed

+1
-1
lines changed

x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/tree/Node.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public boolean forEachDownMayReturnEarly(BiConsumer<? super T, Holder<Boolean>>
9292

9393
public void forEachDown(Consumer<? super T> action) {
9494
boolean result = forEachDownMayReturnEarly((p, breakFlag) -> { action.accept(p); });
95-
// We should be breaking early here...
95+
// We should not be breaking early here...
9696
assert result == false;
9797
}
9898

0 commit comments

Comments
 (0)