This is an automated email from the ASF dual-hosted git repository.
chunwei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/master by this push:
new bfabec671a [CALCITE-5015] Fix typo in PartiallyOrderedSet
bfabec671a is described below
commit bfabec671a202f350f0982a50f28819688d88dac
Author: Innovimax <[email protected]>
AuthorDate: Sun Feb 20 18:50:37 2022 +0100
[CALCITE-5015] Fix typo in PartiallyOrderedSet
Close apache/calcite#2726
---
core/src/main/java/org/apache/calcite/util/PartiallyOrderedSet.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/src/main/java/org/apache/calcite/util/PartiallyOrderedSet.java
b/core/src/main/java/org/apache/calcite/util/PartiallyOrderedSet.java
index a2ecd48d23..c77ac7f66b 100644
--- a/core/src/main/java/org/apache/calcite/util/PartiallyOrderedSet.java
+++ b/core/src/main/java/org/apache/calcite/util/PartiallyOrderedSet.java
@@ -55,7 +55,7 @@ import static java.util.Objects.requireNonNull;
* f.lte(g) returns true, then e.lte(g) must return true.</li>
* </ul>
*
- * <p>Note that not all pairs of elements are related. If is OK if e.lte(f)
+ * <p>Note that not all pairs of elements are related. It is OK if e.lte(f)
* returns false and f.lte(e) returns false also.</p>
*
* <p>In addition to the usual set methods, there are methods to determine the