summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-11-07 18:56:57 -0500
committerSam Anthony <sam@samanthony.xyz>2024-11-07 18:56:57 -0500
commitb77d978d3774ce444e3514a16a11ea04916584f0 (patch)
tree3d0d94189bd8e764038e101b68b1cb543e2163c3
parentabbd91485e194de5295d98c30f049f1293fd892b (diff)
downloadsoen422-b77d978d3774ce444e3514a16a11ea04916584f0.zip
server: fix punctuation in comment
-rw-r--r--server/server.go2
1 files changed, 1 insertions, 1 deletions
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)