file-systems: Fix <file-system> skip-check-if-clean? default.

Let this be a warning against—even cautiously and deliberately—using
double negatives.  You shall stare, but you shall not see.

* gnu/system/file-systems.scm (<file-system>): Fix the default
skip-check-if-clean? value to match the documentation and the intention.
This commit is contained in:
Tobias Geerinckx-Rice 2021-09-24 21:08:13 +02:00
parent 1f08a6a269
commit 69f37702df
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -127,7 +127,7 @@ (define-record-type* <file-system> %file-system
(check? file-system-check? ; Boolean
(default #t))
(skip-check-if-clean? file-system-skip-check-if-clean? ; Boolean
(default #f))
(default #t))
(repair file-system-repair ; symbol or #f
(default 'preen))
(create-mount-point? file-system-create-mount-point? ; Boolean