This is an automated email from the ASF dual-hosted git repository. jhyde pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/calcite.git
commit 42f0f2d6ee1e53e651c42a3dbba1b814d0426636 Author: Tanner Clary <[email protected]> AuthorDate: Sun Dec 31 12:48:06 2023 -0800 Typos in SqlWriter --- 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 { }
