diff --git a/core/src/main/java/org/apache/calcite/adapter/enumerable/NullPolicy.java b/core/src/main/java/org/apache/calcite/adapter/enumerable/NullPolicy.java index 1d426ea43b1c..5e09815a9548 100644 --- a/core/src/main/java/org/apache/calcite/adapter/enumerable/NullPolicy.java +++ b/core/src/main/java/org/apache/calcite/adapter/enumerable/NullPolicy.java @@ -28,7 +28,7 @@ public enum NullPolicy { /** Returns null if and only if all of the arguments are null; * If all of the arguments are false return false otherwise true. */ ALL, - /** Returns null if and only if one of the arguments are null. */ + /** Returns null if and only if at least one of the arguments is null. */ STRICT, /** Returns null if one of the arguments is null, and possibly other times. */ SEMI_STRICT,