summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorVagrant Cascadian <vagrant@debian.org>2021-04-20 11:54:21 -0700
committerVagrant Cascadian <vagrant@debian.org>2021-04-21 08:30:32 -0700
commit65b86c71ca305b3953cdbe4ad0cf805f86083870 (patch)
treed9406c5d0040741c7b641b01840c6d72895c9418 /gnu
parentf8acd1aeefe2ff5183f58c7e10a1cec4793cffb7 (diff)
image: Fix spelling of "evaluate"
* gnu/build/image.scm: Fix typo.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/build/image.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/build/image.scm b/gnu/build/image.scm
index f6e5cb42f6a..45eed0b298b 100644
--- a/gnu/build/image.scm
+++ b/gnu/build/image.scm
@@ -61,7 +61,7 @@
61 (inexact->exact (ceiling (/ size 1024))))) 61 (inexact->exact (ceiling (/ size 1024)))))
62 62
63(define (estimate-partition-size root) 63(define (estimate-partition-size root)
64 "Given the ROOT directory, evalute and return its size. As this doesn't 64 "Given the ROOT directory, evaluate and return its size. As this doesn't
65take the partition metadata size into account, take a 25% margin." 65take the partition metadata size into account, take a 25% margin."
66 (* 1.25 (file-size root))) 66 (* 1.25 (file-size root)))
67 67