Skip to content

Commit 137cb8c

Browse files
committed
fixed typos
1 parent 655d6bd commit 137cb8c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scanner.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const (
2222
JoinOr JoinOp = "||"
2323
)
2424

25-
// JoinOp represents an expression sign operator.
25+
// SignOp represents an expression sign operator.
2626
type SignOp string
2727

2828
// supported expression sign operators
@@ -319,7 +319,7 @@ func (s *Scanner) scanJoin() (Token, error) {
319319
func (s *Scanner) scanGroup() (Token, error) {
320320
var buf bytes.Buffer
321321

322-
// read the first group bracket without writting it to the buffer
322+
// read the first group bracket without writing it to the buffer
323323
firstChar := s.read()
324324
openGroups := 1
325325

0 commit comments

Comments
 (0)