Skip to content

Commit b22d636

Browse files
authored
Fix typo in Unix class
1 parent 6e50a7b commit b22d636

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Transports/Unix.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace transports
3030
Unix::Unix(const std::string& socketPath) : mSocket(mIoService), mEndpoint(socketPath)
3131
{
3232
if (!boost::filesystem::exists(socketPath)) {
33-
MonLogger::Get(Severity::Error) << "Unix sockes path is invalid: " << socketPath << MonLogger::End();
33+
MonLogger::Get(Severity::Error) << "Unix socket path is invalid: " << socketPath << MonLogger::End();
3434
} else {
3535
mSocket.open();
3636
MonLogger::Get(Severity::Info) << "Unix socket transport initialized (" << socketPath << ")" << MonLogger::End();

0 commit comments

Comments
 (0)