From a250f37cbc93a0d625741b0d380154ed3a94ca09 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 8 Dec 2011 22:08:03 -0500 Subject: update tree for new default type rule R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5448091 --- src/pkg/bytes/bytes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/bytes/bytes.go') diff --git a/src/pkg/bytes/bytes.go b/src/pkg/bytes/bytes.go index 307c89aa3d..e94a0ec5c4 100644 --- a/src/pkg/bytes/bytes.go +++ b/src/pkg/bytes/bytes.go @@ -470,7 +470,7 @@ func Title(s []byte) []byte { // Use a closure here to remember state. // Hackish but effective. Depends on Map scanning in order and calling // the closure once per rune. - prev := rune(' ') + prev := ' ' return Map( func(r rune) rune { if isSeparator(prev) { -- cgit v1.3-5-g9baa