From 0f76cdb3ba54f5e90a8eee4316c49cf0f581f996 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 20 Jun 2023 20:36:03 +0200 Subject: [PATCH] typo --- src/fsfw_hal/host/HostFilesystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fsfw_hal/host/HostFilesystem.cpp b/src/fsfw_hal/host/HostFilesystem.cpp index f9f3bdd6..20984f77 100644 --- a/src/fsfw_hal/host/HostFilesystem.cpp +++ b/src/fsfw_hal/host/HostFilesystem.cpp @@ -165,7 +165,7 @@ ReturnValue_t HostFilesystem::truncateFile(FilesystemParams params) { if (not filesystem::exists(path, e)) { return FILE_DOES_NOT_EXIST; } - // Specify truncaion flug explicitely. + // Specify truncation flug explicitely. ofstream of(path, std::ios::out | std::ios::trunc); return returnvalue::OK; }