We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 633a655 commit 4adf30aCopy full SHA for 4adf30a
main.go
@@ -8,7 +8,7 @@ import (
8
func main() {
9
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
10
fmt.Fprintf(w, "<h1>Hello World from Go!</h1>\n<p>You've requested: %s</p>\n", r.URL.Path)
11
- fmt.Fprintf(w, "<p>with this query string: "+r.URL.RawQuery+"</p>")
+ fmt.Fprintf(w, "<p>With this query string: "+r.URL.RawQuery+"</p>")
12
})
13
14
port := "8080"
0 commit comments