aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-07-18 07:23:48 +0900
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-09-25 12:18:25 +0900
commit41e03c4beefb4d14ca1f8f9d8739a582c9430893 (patch)
treed0006e2a33f4f57909a0c25db927f3f31dec8b5f
parent91e633f0430c8c26e6915f79365a49d8a4327c96 (diff)
downloadguix-41e03c4beefb4d14ca1f8f9d8739a582c9430893.tar
guix-41e03c4beefb4d14ca1f8f9d8739a582c9430893.tar.gz
linux-boot: Fix typo.
* gnu/build/linux-boot.scm (mount-root-file-system): Fix typo.
-rw-r--r--gnu/build/linux-boot.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/build/linux-boot.scm b/gnu/build/linux-boot.scm
index f273957d78..84a5447977 100644
--- a/gnu/build/linux-boot.scm
+++ b/gnu/build/linux-boot.scm
@@ -359,8 +359,9 @@ the last argument of `mknod'."
(define* (mount-root-file-system root type
#:key volatile-root?)
"Mount the root file system of type TYPE at device ROOT. If VOLATILE-ROOT?
-is true, mount ROOT read-only and make it a overlay with a writable tmpfs
-using the kernel build-in overlayfs."
+is true, mount ROOT read-only and make it an overlay with a writable tmpfs
+using the kernel built-in overlayfs."
+
(if volatile-root?
(begin
(mkdir-p "/real-root")