build: Fix typo in file-size docstring.
* guix/build/store-copy.scm (file-size): Fix typo.master
parent
472680a28d
commit
dde03913b3
|
@ -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))
|
||||||
|
|
Reference in New Issue