1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

web.texi: fix uri->string invocation

* doc/ref/web.texi (Web Examples): Fix uri->string invocation.  Thanks
  to Romel Sandoval for the report.
This commit is contained in:
Andy Wingo 2011-03-31 16:17:35 +02:00
parent 8a12aeb919
commit 2ebdf6b555

View file

@ -1575,7 +1575,7 @@ probably know, we'll want to return a 404 response.
(define (not-found request)
(values (build-response #:code 404)
(string-append "Resource not found: "
(unparse-uri (request-uri request)))))
(uri->string (request-uri request)))))
;; Now paste this to let the web server keep going:
,continue