Skip to content

Commit

Permalink
Fix typo in column list expression builder
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfrank committed Jan 26, 2023
1 parent 31d438d commit f6c28d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exp/col.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func NewColumnListExpression(vals ...interface{}) ColumnListExpression {
cols = append(cols, sc)
}
} else {
panic(fmt.Sprintf("Cannot created expression from %+v", val))
panic(fmt.Sprintf("Cannot create expression from %+v", val))
}
}
}
Expand Down

0 comments on commit f6c28d4

Please sign in to comment.