Commit 1f137052 authored by Mark Rushakoff's avatar Mark Rushakoff Committed by Ian Lance Taylor

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/117575Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 77d5c628
......@@ -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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment