config: fix minor comment errors
This commit is contained in:
parent
75f000e0cc
commit
a3f79cd790
|
@ -73,8 +73,8 @@ func interpolationFuncFile() ast.Function {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// interpolationFuncFormat implements the "replace" function that does
|
// interpolationFuncFormat implements the "format" function that does
|
||||||
// string replacement.
|
// string formatting.
|
||||||
func interpolationFuncFormat() ast.Function {
|
func interpolationFuncFormat() ast.Function {
|
||||||
return ast.Function{
|
return ast.Function{
|
||||||
ArgTypes: []ast.Type{ast.TypeString},
|
ArgTypes: []ast.Type{ast.TypeString},
|
||||||
|
|
|
@ -11,8 +11,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// InterpSplitDelim is the delimeter that is looked for to split when
|
// InterpSplitDelim is the delimeter that is looked for to split when
|
||||||
// it is returned. This is a comma right now but should eventually become
|
// it is returned.
|
||||||
// a value that a user is very unlikely to use (such as UUID).
|
|
||||||
const InterpSplitDelim = `B780FFEC-B661-4EB8-9236-A01737AD98B6`
|
const InterpSplitDelim = `B780FFEC-B661-4EB8-9236-A01737AD98B6`
|
||||||
|
|
||||||
// interpolationWalker implements interfaces for the reflectwalk package
|
// interpolationWalker implements interfaces for the reflectwalk package
|
||||||
|
|
Loading…
Reference in New Issue