fixed parameter naming for list-file-empty? function
parent
b69788bd91
commit
192592f110
4
util.rkt
4
util.rkt
|
@ -34,8 +34,8 @@
|
||||||
#:line-mode 'any)])
|
#:line-mode 'any)])
|
||||||
todo-list))
|
todo-list))
|
||||||
|
|
||||||
(define (list-file-empty? lst)
|
(define (list-file-empty? a-file)
|
||||||
(list:empty? (file->string-list lst)))
|
(list:empty? (file->string-list a-file)))
|
||||||
|
|
||||||
(define (get-removed-item lst args)
|
(define (get-removed-item lst args)
|
||||||
(list-ref (file->string-list lst) (string->number args)))
|
(list-ref (file->string-list lst) (string->number args)))
|
||||||
|
|
Loading…
Reference in New Issue