diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-02-05 21:42:25 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-02-07 16:22:37 -0500 |
commit | dde03913b3e0ecdb3851f49f4e7ca7141a96cacb (patch) | |
tree | 07197a632a7bbe94a105d6904c2cfda3cd42e86b | |
parent | 472680a28d83f79935bd526db6ed7ed39cdd9198 (diff) | |
download | guix-dde03913b3e0ecdb3851f49f4e7ca7141a96cacb.tar.gz |
build: Fix typo in file-size docstring.
* guix/build/store-copy.scm (file-size): Fix typo.
-rw-r--r-- | guix/build/store-copy.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/store-copy.scm b/guix/build/store-copy.scm index 01e1f41870..657a91f324 100644 --- a/guix/build/store-copy.scm +++ b/guix/build/store-copy.scm @@ -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)) |