1
0
mirror of synced 2025-02-20 20:21:33 +01:00

fix: Typo in tar.hpp (#1909)

occured -> occurred
This commit is contained in:
Ikko Eltociear Ashimine 2024-11-24 19:20:51 +09:00 committed by GitHub
parent cc4563afb0
commit 1738e8883f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,7 @@ namespace hex {
void close();
/**
* @brief get the error string explaining the error that occured when opening the file.
* @brief get the error string explaining the error that occurred when opening the file.
* This error is a combination of the tar error and the native file open error
*/
std::string getOpenErrorString() const;
@ -59,4 +59,4 @@ namespace hex {
int m_fileOpenErrno = 0;
};
}
}