summaryrefslogtreecommitdiff
path: root/gnu/build
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-09-25 22:49:57 +0900
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2019-11-18 13:22:16 +0900
commitd2ae8a25db24f677af36f5e05ff930d43f8a71c4 (patch)
treeeecca0fcd976e299fda50628c3dc261807b3b506 /gnu/build
parent1a034f043e12e0c61accc38d276df9b0a1b00408 (diff)
downloadguix-patches-d2ae8a25db24f677af36f5e05ff930d43f8a71c4.tar
guix-patches-d2ae8a25db24f677af36f5e05ff930d43f8a71c4.tar.gz
file-systems: Fix docstring.
* gnu/build/file-systems.scm (mount-file-system): Clean the documentation from the no longer existing parameters (these are now encapsulated within a <file-system> record).
Diffstat (limited to 'gnu/build')
-rw-r--r--gnu/build/file-systems.scm6
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index 8bb10d574d..cb90fa0907 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -581,11 +581,7 @@ corresponds to the symbols listed in FLAGS."
0))))
(define* (mount-file-system fs #:key (root "/root"))
- "Mount the file system described by FS, a <file-system> object, under ROOT.
-
-DEVICE, MOUNT-POINT, and TYPE must be strings; OPTIONS can be a string or #f;
-FLAGS must be a list of symbols. CHECK? is a Boolean indicating whether to
-run a file system check."
+ "Mount the file system described by FS, a <file-system> object, under ROOT."
(define (mount-nfs source mount-point type flags options)
(let* ((idx (string-rindex source #\:))