Fixed typo in documentation of sf::TcpListener

This commit is contained in:
Laurent Gomila 2011-07-30 17:35:13 +02:00
parent f5294d5342
commit 3f22fbb978

View File

@ -147,7 +147,7 @@ public :
/// while (running)
/// {
/// sf::TcpSocket client;
/// if (listener.accept(client) == sf::Socket::Done)
/// if (listener.Accept(client) == sf::Socket::Done)
/// {
/// // A new client just connected!
/// std::cout << "New connection received from " << client.GetRemoteAddress() << std::endl;