From 619f63fb5e9e75f3ffbeb55fe0647897f071c5da Mon Sep 17 00:00:00 2001 From: "Arthur A. Gleckler" Date: Mon, 27 May 2024 19:15:56 -0700 Subject: [PATCH] Fix typo in (chibi app) example. Backslash needed escaping. --- 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 8fe46d86..dc7d595e 100644 --- a/lib/chibi/app.scm +++ b/lib/chibi/app.scm @@ -64,7 +64,7 @@ ;;> "Zookeeper Application" ;;> (@ ;;> (animals (list symbol) "list of animals to act on (default all)") -;;> (lions boolean (#\l) "also apply the action to lions")) +;;> (lions boolean (#\\l) "also apply the action to lions")) ;;> (or ;;> (feed "feed the animals" () (,feed animals ...)) ;;> (wash "wash the animals" (@ (soap boolean)) (,wash animals ...))