diff --git a/collects/web-server/scribblings/http.scrbl b/collects/web-server/scribblings/http.scrbl index 667c2aad25..a5c61aab43 100644 --- a/collects/web-server/scribblings/http.scrbl +++ b/collects/web-server/scribblings/http.scrbl @@ -184,7 +184,7 @@ Here is an example typical of what you will find in many applications: 301 #"Moved Permanently" (current-seconds) TEXT/HTML-MIME-TYPE (list (make-header #"Location" - #"http://racket-lang.org/downloads")) + #"http://racket-lang.org/download")) (λ (op) (write-bytes #"Moved" op))) ] } @@ -200,10 +200,10 @@ Here is an example typical of what you will find in many applications: 301 #"Moved Permanently" (current-seconds) TEXT/HTML-MIME-TYPE (list (make-header #"Location" - #"http://racket-lang.org/downloads")) + #"http://racket-lang.org/download")) (list #"

" #"Please go to here instead." #"

")) ]