me
/
guix
Archived
1
0
Fork 0

build: Fix typo in file-size docstring.

* guix/build/store-copy.scm (file-size): Fix typo.
master
Maxim Cournoyer 2022-02-05 21:42:25 -05:00
parent 472680a28d
commit dde03913b3
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ It is meant as an internal format."
refs))))))) refs)))))))
(define (file-size file) (define (file-size file)
"Return the size of bytes of FILE, entering it if FILE is a directory." "Return the size in bytes of FILE, entering it if FILE is a directory."
(file-system-fold (const #t) (file-system-fold (const #t)
(lambda (file stat result) ;leaf (lambda (file stat result) ;leaf
(+ (stat:size stat) result)) (+ (stat:size stat) result))