Skip to content

Commit 1773e81

Browse files
committed
refactor: fix comments
1 parent cf264d4 commit 1773e81

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dsl/types/expr.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import "context"
66
type Expr interface {
77
Value
88

9-
// Op returns operator of Expr
9+
// Op returns operator
1010
Op() Op
1111

12-
// Args returns arguments of Expr
12+
// Args returns arguments
1313
Args() []Value
1414

15-
// RetType returns return type of Expr
15+
// RetType returns return type
1616
RetType() Type
1717
}
1818

dsl/types/op.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package types
22

33
import "context"
44

5-
// Op is an operation of JSON DSL
5+
// Op is an operator of JSON DSL
66
type Op interface {
77
// String returns function name
88
String() string

0 commit comments

Comments
 (0)