[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/04: file-systems: Fix docstring.
From: |
guix-commits |
Subject: |
03/04: file-systems: Fix docstring. |
Date: |
Sun, 17 Nov 2019 23:23:07 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit d2ae8a25db24f677af36f5e05ff930d43f8a71c4
Author: Maxim Cournoyer <address@hidden>
Date: Wed Sep 25 22:49:57 2019 +0900
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).
---
gnu/build/file-systems.scm | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index 8bb10d5..cb90fa0 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 #\:))