fix grammar in godoc

This commit is contained in:
Gregory Roseberry 2014-09-02 12:06:29 +09:00
parent df97727d47
commit f97cca7639

View file

@ -28,7 +28,7 @@ func BoolFrom(b bool) Bool {
return NewBool(b, true)
}
// BoolFromPtr creates a new Bool that be null if f is nil.
// BoolFromPtr creates a new Bool that will be null if f is nil.
func BoolFromPtr(b *bool) Bool {
if b == nil {
return NewBool(false, false)