Skip to content

Commit

Permalink
Merge pull request #376 from philippfrank/fix-typo
Browse files Browse the repository at this point in the history
chore: fix typo in column list expression builder
  • Loading branch information
funkyshu authored Dec 14, 2023
2 parents 58b19cc + f6c28d4 commit b4d7d0d
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 b4d7d0d

Please sign in to comment.