Skip to content

Commit

Permalink
[MINOR] Fix typos in SqlWriter docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tanclary committed Dec 31, 2023
1 parent 9ec3a5b commit 8ef3d46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/main/java/org/apache/calcite/sql/SqlWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -559,13 +559,13 @@ SqlWriter list(FrameTypeEnum frameType, SqlBinaryOperator sepOp,
* 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 {
}
Expand Down

0 comments on commit 8ef3d46

Please sign in to comment.