Skip to content

Commit

Permalink
Update form-api.go
Browse files Browse the repository at this point in the history
Minor fix to formatting
  • Loading branch information
TIT8 authored Nov 20, 2023
1 parent b2a00bc commit d531907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion form-api.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func handler_get(w http.ResponseWriter, r *http.Request) {

r.Body = http.MaxBytesReader(w, r.Body, 100)

fmt.Fprintf(w, "Ciao da %s\nList of IP addresses received (including yours, if visible):\n%s", r.Host, r.Header.Get("X-Forwarded-For"))
fmt.Fprintf(w, "Ciao da %s\nList of IP addresses received (including yours, if visible):\n%s\n", r.Host, r.Header.Get("X-Forwarded-For"))

}

Expand Down

0 comments on commit d531907

Please sign in to comment.