From b7488b321d551277ea5a62c7dfa6d565e6986958 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Tue, 14 May 2019 17:11:23 +0200 Subject: [PATCH] installer: Fix docstring. * gnu/installer/parted.scm (create-fat32-file-system): Fix docstring. --- gnu/installer/parted.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ (define (create-fat16-file-system partition) (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)))