From 9a0e3259f44ad2de9c65f14f756dab01b3598391 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 12 Jan 2012 01:31:45 +0000 Subject: libgo: Update to weekly.2011-12-14. From-SVN: r183118 --- libgo/go/strings/strings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgo/go/strings/strings.go') diff --git a/libgo/go/strings/strings.go b/libgo/go/strings/strings.go index 53fdead..b411ba5 100644 --- a/libgo/go/strings/strings.go +++ b/libgo/go/strings/strings.go @@ -434,7 +434,7 @@ func Title(s string) string { // 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.1