From 1cf88b8a7eebdde3a9e47baa0aa1720cb8266ba1 Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Mon, 8 Jan 2024 22:28:16 -0300 Subject: [PATCH] combinators: Fix case of variable name in procedure documentation strings --- modules/radix/combinators.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/radix/combinators.scm b/modules/radix/combinators.scm index 650e608..a03630f 100644 --- a/modules/radix/combinators.scm +++ b/modules/radix/combinators.scm @@ -12,12 +12,12 @@ (define (all-of pred) "Returns a procedure that takes a list LST and returns #t if every other -element of LST satisfies pred." +element of LST satisfies PRED." (lambda (lst) (null? (filter (negate pred) lst)))) (define (any-of pred) "Returns a procedure that takes a list LST and returns #t if any element of -LST satisfies pred." +LST satisfies PRED." (match-lambda (() #f) ((head . tail)