diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-09-20 21:24:45 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-10-16 15:24:15 +0200 |
commit | 7dff32986228fb515dbda483aaee18de93489e2a (patch) | |
tree | afd3c38ae70f97edd682d05e2d76fb88727980b1 /gnu | |
parent | 6b4663363c061071c10209f71aed1017a241af6c (diff) |
build: Fix docstring typos.
* gnu/build/image.scm (estimate-partition-size): Fix typo in docstring.
* guix/build/copy-build-system.scm (install): Likewise.
* guix/build/lisp-utils.scm (generate-executable): Likewise.
* guix/build/maven/pom.scm (find-parent, fix-pom-dependencies): Likewise.
* guix/build-system/cargo.scm (expand-crate-sources): Likewise.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/build/image.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/build/image.scm b/gnu/build/image.scm index d8efa73f16..b6bf259f1b 100644 --- a/gnu/build/image.scm +++ b/gnu/build/image.scm @@ -60,7 +60,7 @@ (inexact->exact (ceiling (/ size 1024))))) (define (estimate-partition-size root) - "Given the ROOT directory, evalute and return its size. As this doesn't + "Given the ROOT directory, evaluate and return its size. As this doesn't take the partition metadata size into account, take a 25% margin." (* 1.25 (file-size root))) |