guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/05: build: Fix typo in file-size docstring.


From: guix-commits
Subject: 02/05: build: Fix typo in file-size docstring.
Date: Mon, 7 Feb 2022 16:29:19 -0500 (EST)

apteryx pushed a commit to branch master
in repository guix.

commit dde03913b3e0ecdb3851f49f4e7ca7141a96cacb
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Feb 5 21:42:25 2022 -0500

    build: Fix typo in file-size docstring.
    
    * guix/build/store-copy.scm (file-size): Fix typo.
---
 guix/build/store-copy.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]