diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-11-07 18:56:57 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-11-07 18:56:57 -0500 |
| commit | b77d978d3774ce444e3514a16a11ea04916584f0 (patch) | |
| tree | 3d0d94189bd8e764038e101b68b1cb543e2163c3 | |
| parent | abbd91485e194de5295d98c30f049f1293fd892b (diff) | |
| download | soen422-b77d978d3774ce444e3514a16a11ea04916584f0.zip | |
server: fix punctuation in comment
| -rw-r--r-- | server/server.go | 2 |
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) |