Open
Description
The documentation for sql.NamedArg
currently looks like:
type NamedArg struct {
// Name of the parameter placeholder. If empty the ordinal position in the
// argument list will be used.
//
// Name must omit any symbol prefix.
Name string
// Value of the parameter. It may be assigned the same value types as
// the query arguments.
Value interface{}
// contains filtered or unexported fields
}
Can we fix the formatting to look nicer? I expect it to be like:
type NamedArg struct {
// Name of the parameter placeholder. If empty the ordinal position in the
// argument list will be used.
//
// Name must omit any symbol prefix.
Name string
// Value of the parameter. It may be assigned the same value types as
// the query arguments.
Value interface{}
// Contains filtered or unexported fields.
}
This applies to interfaces as well.