From cb307baf89c2818ab7ee18db472bce57dabd2e29 Mon Sep 17 00:00:00 2001 From: Ali Jahangiri <75624145+aliphys@users.noreply.github.com> Date: Mon, 29 Apr 2024 12:01:57 +0200 Subject: [PATCH] LitlleFS -> LittleFS --- src/Utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils.h b/src/Utils.h index 4a6ee36..628664c 100644 --- a/src/Utils.h +++ b/src/Utils.h @@ -39,7 +39,7 @@ [[gnu::unused]] static String prettyPrintFileSystemType(FileSystems f){ if(f == 0) return "FAT"; - else if(f == 1) return "LitlleFS"; + else if(f == 1) return "LittleFS"; else return ""; }