Fix typo.

This commit is contained in:
Mariano Cano 2021-10-12 15:41:41 -07:00
parent a2b03083c8
commit 44f0d61354

View file

@ -95,8 +95,8 @@ func (u *URI) Get(key string) string {
return v
}
// GetBool returns true if a given key has the value "true". It will returns
// false otherwise.
// GetBool returns true if a given key has the value "true". It returns false
// otherwise.
func (u *URI) GetBool(key string) bool {
v := u.Values.Get(key)
if v == "" {