From 66b6db1a674e6817209a69a7ccd1846d3b0e1900 Mon Sep 17 00:00:00 2001 From: Mark Rushakoff Date: Fri, 8 Jun 2018 16:43:54 -0700 Subject: [PATCH] strconv: add missing period to godoc comment --- src/strconv/atob.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strconv/atob.go b/src/strconv/atob.go index 879ceb385e..0a495008d7 100644 --- a/src/strconv/atob.go +++ b/src/strconv/atob.go @@ -17,7 +17,7 @@ func ParseBool(str string) (bool, error) { return false, syntaxError("ParseBool", str) } -// FormatBool returns "true" or "false" according to the value of b +// FormatBool returns "true" or "false" according to the value of b. func FormatBool(b bool) string { if b { return "true"