refactor: fix spelling error

This commit is contained in:
2021-09-20 19:08:04 +02:00
parent b50872d475
commit 969b2f23a7

View File

@@ -35,7 +35,7 @@ bool TCPSocket::Connect(const IPAddress& address, unsigned short port) {
hints.ai_protocol = IPPROTO_TCP;
if (getaddrinfo(address.ToString().c_str(), std::to_string(port).c_str(), &hints, &result) != 0) {
std::cerr << "Failed to get adress info !\n";
std::cerr << "Failed to get address info !\n";
return false;
}