Files
William Douglas 04ff3259ab Update how-to-make-a-release with detailed steps
And run them for a commit (needed to poke the go version in go.mod due
to a dependency update needing at least go 1.17).

Signed-off-by: William Douglas <william.douglas@intel.com>
2023-02-22 11:28:50 -08:00

11 lines
116 B
Go

//go:build !go1.10
// +build !go1.10
package xstrings
import "bytes"
type stringBuilder struct {
bytes.Buffer
}