func bytes.Replace

3 uses

	bytes (current package)
		bytes.go#L1096: func Replace(s, old, new []byte, n int) []byte {
		bytes.go#L1138: 	return Replace(s, old, new, -1)

	github.com/kr/text
		wrap.go#L24: 	words := bytes.Split(bytes.Replace(bytes.TrimSpace(b), nl, sp, -1), sp)