summaryrefslogtreecommitdiff
path: root/examples/web/hello.scm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/web/hello.scm')
-rw-r--r--examples/web/hello.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/web/hello.scm b/examples/web/hello.scm
index db17b9b5b..aa383c589 100644
--- a/examples/web/hello.scm
+++ b/examples/web/hello.scm
@@ -23,7 +23,7 @@
;; for us with a 200 OK status.
;;
(define (handler request body)
- (values '((content-type . ("text/plain")))
+ (values '((content-type . (text/plain)))
"Hello, World!"))
(run-server handler)