summary refs log tree commit diff
path: root/doc/guix.texi
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-09-04 10:09:01 +0200
committerLudovic Courtès <ludo@gnu.org>2020-09-04 11:29:51 +0200
commit720fd7320f944692a770d0a689313a563a429ca1 (patch)
tree0896aed173d6a4917b1fb02f084b0648f0a66887 /doc/guix.texi
parenteb3328004ebf69d258b1afc46b5cab010c1a4a26 (diff)
downloadguix-720fd7320f944692a770d0a689313a563a429ca1.tar.gz
doc: Balance parens in R Shiny example.
* doc/guix.texi (Miscellaneous Services): Balance parens in R Shiny
example.
Diffstat (limited to 'doc/guix.texi')
-rw-r--r--doc/guix.texi5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 0d6768625d..0a68457160 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -28036,7 +28036,7 @@ The common way to create this file is as follows:
        (app       (string-append out "/bin/" ,name))
        (Rbin      (string-append (assoc-ref %build-inputs "r-min")
                                  "/bin/Rscript")))
-@dots{}
+  ;; @dots{}
   (mkdir-p (string-append out "/bin"))
   (call-with-output-file app
     (lambda (port)
@@ -28045,8 +28045,7 @@ The common way to create this file is as follows:
 library(shiny)
 setwd(\"~a\")
 runApp(launch.browser=0, port=4202)~%\n"
-      Rbin targetdir)))
-@dots{}
+      Rbin targetdir))))
 @end lisp
 
 @end table