diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2019-05-14 17:11:23 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2019-05-14 18:01:09 +0200 |
commit | b7488b321d551277ea5a62c7dfa6d565e6986958 (patch) | |
tree | 528fa578c5520a8e1f85dfff2d533f1ff72149ad /gnu/installer | |
parent | 628d09ae53047ea666f4f84ae5e5be911647fe8c (diff) | |
download | guix-b7488b321d551277ea5a62c7dfa6d565e6986958.tar guix-b7488b321d551277ea5a62c7dfa6d565e6986958.tar.gz |
installer: Fix docstring.
* gnu/installer/parted.scm (create-fat32-file-system): Fix docstring.
Diffstat (limited to 'gnu/installer')
-rw-r--r-- | gnu/installer/parted.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index e5ffe353fe..6975ecd519 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm @@ -1061,7 +1061,7 @@ bit bucket." (invoke "mkfs.fat" "-F16" partition))) (define (create-fat32-file-system partition) - "Create an ext4 file-system for PARTITION file-name." + "Create a fat32 file-system for PARTITION file-name." (with-null-output-ports (invoke "mkfs.fat" "-F32" partition))) |