mirror of https://github.com/golang/go.git
strconv: add missing period to godoc comment
This commit is contained in:
parent
77d5c62815
commit
66b6db1a67
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue