From 2ebdf6b5551646804e3adc2fc4a9acb896210f89 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 31 Mar 2011 16:17:35 +0200 Subject: [PATCH] web.texi: fix uri->string invocation * doc/ref/web.texi (Web Examples): Fix uri->string invocation. Thanks to Romel Sandoval for the report. --- doc/ref/web.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ref/web.texi b/doc/ref/web.texi index a72a18701..dd2e3962d 100644 --- a/doc/ref/web.texi +++ b/doc/ref/web.texi @@ -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