build: Fix typo in file-size docstring.

* guix/build/store-copy.scm (file-size): Fix typo.
This commit is contained in:
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

View File

@ -140,7 +140,7 @@ It is meant as an internal format."
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))