From 06cc9b5c7b48c99af3417f9ce950b8908d39a563 Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Tue, 15 Aug 2023 03:05:38 +0800 Subject: [PATCH] util: fix typo in comment (#29392) fix typo in comment old-commit-hash: 37c3854623dc2df58469ac5d0b9e97375f57ca1f --- common/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/util.h b/common/util.h index d2ce98a235..4347dfba3b 100644 --- a/common/util.h +++ b/common/util.h @@ -81,7 +81,7 @@ std::string dir_name(std::string const& path); int random_int(int min, int max); std::string random_string(std::string::size_type length); -// **** file fhelpers ***** +// **** file helpers ***** std::string read_file(const std::string& fn); std::map read_files_in_dir(const std::string& path); int write_file(const char* path, const void* data, size_t size, int flags = O_WRONLY, mode_t mode = 0664);