This is an automated email from the ASF dual-hosted git repository.
mbudiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/main by this push:
new 14ad949490 Fix typos in some files
14ad949490 is described below
commit 14ad949490e2fc0594d62017ed68dff304a34373
Author: khanhkhanhlele <[email protected]>
AuthorDate: Fri Nov 7 10:21:53 2025 +0700
Fix typos in some files
---
core/src/main/java/org/apache/calcite/materialize/MutableNode.java | 2 +-
site/_posts/2021-10-19-release-1.28.0.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/src/main/java/org/apache/calcite/materialize/MutableNode.java
b/core/src/main/java/org/apache/calcite/materialize/MutableNode.java
index eb3e788621..278c946966 100644
--- a/core/src/main/java/org/apache/calcite/materialize/MutableNode.java
+++ b/core/src/main/java/org/apache/calcite/materialize/MutableNode.java
@@ -88,7 +88,7 @@ void flatten(List<MutableNode> flatNodes) {
}
}
- /** Returns whether this node is cylic, in an undirected sense; that is,
+ /** Returns whether this node is cyclic, in an undirected sense; that is,
* whether the same descendant can be reached by more than one route. */
boolean isCyclic() {
final Set<MutableNode> descendants = new HashSet<>();
diff --git a/site/_posts/2021-10-19-release-1.28.0.md
b/site/_posts/2021-10-19-release-1.28.0.md
index ca62f2fdc0..e691004a0c 100644
--- a/site/_posts/2021-10-19-release-1.28.0.md
+++ b/site/_posts/2021-10-19-release-1.28.0.md
@@ -78,7 +78,7 @@ ## Breaking changes to ImmutableBeans
[`@Value.Immutable`](https://immutables.github.io/immutable.html#value)
annotation.
* Where `RelRule.Config` subclasses were nested 2+ classes deep, the
- interfaces have been marked deprecated and are superceded by new,
+ interfaces have been marked deprecated and are superseded by new,
uniquely named interfaces. The original Configs extend the new
uniquely named interfaces. Subclassing these work as before and the
existing rule signatures accept any previously implemented Config