Skip to content

Commit a4772ae

Browse files
committed
refactor: fix comments
1 parent 3f30228 commit a4772ae

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dsl/ops/macro.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66

77
type macroBase string
88

9-
// String returns "$array"
109
func (m *macroBase) String() string {
1110
return string(*m)
1211
}
@@ -15,7 +14,7 @@ func (*macroBase) IsMacro() bool {
1514
return true
1615
}
1716

18-
// Invert the result of op.Execute() which expands an expression
17+
// macroInvertExpr inverts the result of op.Execute() which expands an expression
1918
func (*macroBase) macroInvertExpr(val types.Value, _ func(), err error) (types.Value, error) {
2019
if err != nil {
2120
return nil, err

0 commit comments

Comments
 (0)