8 lines
221 B
Go
8 lines
221 B
Go
package zclwrite
|
|
|
|
// format rewrites tokens within the given sequence, in-place, to adjust the
|
|
// whitespace around their content to achieve canonical formatting.
|
|
func format(tokens Tokens) {
|
|
// currently does nothing
|
|
}
|