diff --git a/src/details/os_unix.cpp b/src/details/os_unix.cpp index c4e0390a..c1026b6d 100644 --- a/src/details/os_unix.cpp +++ b/src/details/os_unix.cpp @@ -322,7 +322,7 @@ std::string getenv(const char *field) { return buf != nullptr ? buf : std::string{}; } -// Do fsync by FILE handlerpointer +// Do fsync by FILE pointer // Return true on success bool fsync(FILE *fp) { return ::fsync(fileno(fp)) == 0; }