From b77d978d3774ce444e3514a16a11ea04916584f0 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Thu, 7 Nov 2024 18:56:57 -0500 Subject: server: fix punctuation in comment --- server/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/server.go b/server/server.go index 7a70cc6..07b961b 100644 --- a/server/server.go +++ b/server/server.go @@ -29,7 +29,7 @@ func main() { } // Parse the value associated with each key in the query string. Returns a map of -// keys and values, or error if one of the keys is missing, or if there is no value +// keys and values, or error if one of the keys is missing or if there is no value // associated with one of the keys. func parseQuery(query string, keys []string) (map[string]string, error) { queryVals, err := url.ParseQuery(query) -- cgit v1.2.3