summaryrefslogtreecommitdiff
path: root/libgo/go/strconv/atob.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/strconv/atob.go')
-rw-r--r--libgo/go/strconv/atob.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/strconv/atob.go b/libgo/go/strconv/atob.go
index 69fa2292a18..98ce750798d 100644
--- a/libgo/go/strconv/atob.go
+++ b/libgo/go/strconv/atob.go
@@ -7,8 +7,8 @@ package strconv
import "os"
// Atob returns the boolean value represented by the string.
-// It accepts 1, t, T, TRUE, true, 0, f, F, FALSE, false. Any other value returns
-// an error.
+// It accepts 1, t, T, TRUE, true, True, 0, f, F, FALSE, false, False.
+// Any other value returns an error.
func Atob(str string) (value bool, err os.Error) {
switch str {
case "1", "t", "T", "true", "TRUE", "True":