Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmedal committed Dec 4, 2024
1 parent 495d1b3 commit e7b55be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ pub enum Expr {
Identifier(Ident),
/// Multi-part identifier, e.g. `table_alias.column` or `schema.table.col`
CompoundIdentifier(Vec<Ident>),
/// Multi-part Expression accessing. It's used to represent a access chain from a root expression.
/// Multi-part Expression accessing. It's used to represent an access chain from a root expression.
/// e.g. `expr[0]`, `expr[0][0]`, or `expr.field1.filed2[1].field3`, ...
CompoundExpr {
root: Box<Expr>,
Expand Down

0 comments on commit e7b55be

Please sign in to comment.