From cb63e9130c4ad9e189b5f7aba8c67972efbcf8cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ekaitz=20Z=C3=A1rraga?= Date: Sat, 19 Oct 2019 13:01:10 +0200 Subject: [PATCH] Missing ) in code example --- lib/chibi/app.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chibi/app.scm b/lib/chibi/app.scm index b0bf98d2..19d94bf7 100644 --- a/lib/chibi/app.scm +++ b/lib/chibi/app.scm @@ -67,7 +67,7 @@ ;;> (or ;;> (feed "feed the animals" () (,feed animals ...)) ;;> (wash "wash the animals" (@ (soap boolean)) (,wash animals ...)) -;;> (help "print help" (,app-help-command))) +;;> (help "print help" (,app-help-command)))) ;;> (command-line) ;;> (conf-load (string-append (get-environment-variable "HOME") "/.zoo"))) ;;> }