From 44f0d61354ae4cfdd894a27842f932a0749a2d4c Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Tue, 12 Oct 2021 15:41:41 -0700 Subject: [PATCH] Fix typo. --- kms/uri/uri.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kms/uri/uri.go b/kms/uri/uri.go index 3a1b8981..36e15e7d 100644 --- a/kms/uri/uri.go +++ b/kms/uri/uri.go @@ -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 == "" {