]> Cypherpunks repositories - gostls13.git/commitdiff
strconv: add missing period to godoc comment
authorMark Rushakoff <mark.rushakoff@gmail.com>
Sat, 9 Jun 2018 00:01:42 +0000 (00:01 +0000)
committerIan Lance Taylor <iant@golang.org>
Sat, 9 Jun 2018 01:26:25 +0000 (01:26 +0000)
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 <iant@golang.org>
src/strconv/atob.go

index 879ceb385ed335b78f8de76cc05baec8bcb6c94e..0a495008d7785e15544070114e4807ff21c3f42a 100644 (file)
@@ -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"