Fix english:add-commas

This commit is contained in:
Feufochmar 2020-07-13 18:20:28 +02:00
parent 8a3e017782
commit a23c527307
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@
(foldl
(lambda (x result)
(append result (list ", " x)))
(car lst)
(list (car lst))
(drop-right (cdr lst) 1))
(list ", and " (last lst)))
)))