This is an automated email from the ASF dual-hosted git repository.
tanner 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 8d9b27f1ac [MINOR] Fix typos in SqlWriter docs
8d9b27f1ac is described below
commit 8d9b27f1ace7f975407920cb88806715b1f0ef82
Author: Tanner Clary <[email protected]>
AuthorDate: Sun Dec 31 12:48:06 2023 -0800
[MINOR] Fix typos in SqlWriter docs
---
core/src/main/java/org/apache/calcite/sql/SqlWriter.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/src/main/java/org/apache/calcite/sql/SqlWriter.java
b/core/src/main/java/org/apache/calcite/sql/SqlWriter.java
index 47a400f417..57982fb2ab 100644
--- a/core/src/main/java/org/apache/calcite/sql/SqlWriter.java
+++ b/core/src/main/java/org/apache/calcite/sql/SqlWriter.java
@@ -559,13 +559,13 @@ public interface SqlWriter {
* consists of expressions separated by ",", and ends with a ")".
*
* <p>A select statement is also a kind of frame. The beginning and end are
- * are empty strings, but it consists of a sequence of clauses. "SELECT",
+ * empty strings, but it consists of a sequence of clauses. "SELECT",
* "FROM", "WHERE" are separators.
*
* <p>A frame is current between a call to one of the
* {@link SqlWriter#startList} methods and the call to
- * {@link SqlWriter#endList(Frame)}. If other code starts a frame in the mean
- * time, the sub-frame is put onto a stack.
+ * {@link SqlWriter#endList(Frame)}. If other code starts a frame in the
meantime,
+ * the sub-frame is put onto a stack.
*/
interface Frame {
}