mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-04 19:56:36 +02:00
Fixing typo in every definition.
This commit is contained in:
parent
44c643c7cf
commit
5dbc970422
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
(or (null? ls)
|
||||
(if (null? (cdr ls))
|
||||
(pred (car ls))
|
||||
(if (pred (car ls)) (every1 pred (cdr ls)) #f))))
|
||||
(if (pred (car ls)) (every pred (cdr ls)) #f))))
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
;; exception utilities
|
||||
|
|
Loading…
Add table
Reference in a new issue