]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/web-server/web-server.el
Fix some quoting problems in doc strings
[gnu-emacs-elpa] / packages / web-server / web-server.el
index 41ff18d404c6a1759bd98c511885c653a574dfaf..1c063047937ddbc74acf5b97176d2415907e78bf 100644 (file)
@@ -106,9 +106,9 @@ function MATCH and the `ws-response-header' convenience
 function.
 
   (ws-start
 function.
 
   (ws-start
-   '(((lambda (_) t) .
+   \\='(((lambda (_) t) .
       (lambda (proc request)
       (lambda (proc request)
-        (ws-response-header proc 200 '(\"Content-type\" . \"text/plain\"))
+        (ws-response-header proc 200 \\='(\"Content-type\" . \"text/plain\"))
         (process-send-string proc \"hello world\")
         t)))
    8080)
         (process-send-string proc \"hello world\")
         t)))
    8080)
@@ -562,7 +562,7 @@ supplied any subsequent data written to PROC using `ws-send' will
 be encoded appropriately including sending the appropriate data
 upon the end of transmission for chunked transfer encoding.
 
 be encoded appropriately including sending the appropriate data
 upon the end of transmission for chunked transfer encoding.
 
-For example with the header `(\"Content-Encoding\" . \"gzip\")',
+For example with the header (\"Content-Encoding\" . \"gzip\"),
 any data subsequently written to PROC using `ws-send' will be
 compressed using the command specified in `ws-gzip-cmd'."
   ;; update process to reflect any Content or Transfer encodings
 any data subsequently written to PROC using `ws-send' will be
 compressed using the command specified in `ws-gzip-cmd'."
   ;; update process to reflect any Content or Transfer encodings