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 47a400f417e..507fc92c0b1 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 @@ SqlWriter list(FrameTypeEnum frameType, SqlBinaryOperator sepOp, * consists of expressions separated by ",", and ends with a ")". * *
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. * *
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 { }