diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-09-25 17:49:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-09-26 11:43:25 +0200 |
commit | 4a506da83a3af829a42c9433bd0087a96d6f1c7a (patch) | |
tree | 1b03c026664f4668670628a3ecf07fa73ccecb53 /doc/guix.texi | |
parent | 205a0fe0948257c75619db506f033827d591c47e (diff) | |
download | guix-4a506da83a3af829a42c9433bd0087a96d6f1c7a.tar guix-4a506da83a3af829a42c9433bd0087a96d6f1c7a.tar.gz |
doc: Fix syntax of Varnish example.
* doc/guix.texi (Web Services): Escape nested string in '%gnu-mirror'
variable definition. Adjust indentation.
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 267c2e9e6c..762e8da2bd 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -19819,13 +19819,12 @@ can do something along these lines: @lisp (define %gnu-mirror - (plain-file - "gnu.vcl" - "vcl 4.1; -backend gnu @{ .host = "www.gnu.org"; @}")) + (plain-file "gnu.vcl" + "vcl 4.1; +backend gnu @{ .host = \"www.gnu.org\"; @}")) (operating-system - ... + ;; @dots{} (services (cons (service varnish-service-type (varnish-configuration (listen '(":80")) |