From: Mark Rushakoff Date: Sat, 9 Jun 2018 00:01:42 +0000 (+0000) Subject: strconv: add missing period to godoc comment X-Git-Tag: go1.11beta1~170 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1f137052e4a20dbd302f947b1cf34cdf4b427d65;p=gostls13.git strconv: add missing period to godoc comment Change-Id: I90ba0a6e0c6ccdce16938eed09424308a84fc6fb GitHub-Last-Rev: 66b6db1a674e6817209a69a7ccd1846d3b0e1900 GitHub-Pull-Request: golang/go#25801 Reviewed-on: https://go-review.googlesource.com/117575 Reviewed-by: Ian Lance Taylor --- 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"