strconv: add missing period to godoc comment

This commit is contained in:
Mark Rushakoff 2018-06-08 16:43:54 -07:00 committed by GitHub
parent 77d5c62815
commit 66b6db1a67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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"