file-systems: Add missing docstring.
* gnu/system/file-systems.scm (file-system-type-predicate): Add docstring.
This commit is contained in:
parent
278d486b0c
commit
7dbd75b3cf
|
@ -417,6 +417,8 @@ a bind mount."
|
|||
%network-configuration-files))
|
||||
|
||||
(define (file-system-type-predicate type)
|
||||
"Return a predicate that, when passed a file system, returns #t if that file
|
||||
system has the given TYPE."
|
||||
(lambda (fs)
|
||||
(string=? (file-system-type fs) type)))
|
||||
|
||||
|
|
Loading…
Reference in New Issue