We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 655d6bd commit 137cb8cCopy full SHA for 137cb8c
1 file changed
scanner.go
@@ -22,7 +22,7 @@ const (
22
JoinOr JoinOp = "||"
23
)
24
25
-// JoinOp represents an expression sign operator.
+// SignOp represents an expression sign operator.
26
type SignOp string
27
28
// supported expression sign operators
@@ -319,7 +319,7 @@ func (s *Scanner) scanJoin() (Token, error) {
319
func (s *Scanner) scanGroup() (Token, error) {
320
var buf bytes.Buffer
321
322
- // read the first group bracket without writting it to the buffer
+ // read the first group bracket without writing it to the buffer
323
firstChar := s.read()
324
openGroups := 1
325
0 commit comments