mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
build: Fix typo in file-size docstring.
* guix/build/store-copy.scm (file-size): Fix typo.
This commit is contained in:
parent
472680a28d
commit
dde03913b3
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ (define (read-reference-graph port)
|
|||
refs)))))))
|
||||
|
||||
(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)
|
||||
(lambda (file stat result) ;leaf
|
||||
(+ (stat:size stat) result))
|
||||
|
|
Loading…
Reference in a new issue