1
0
mirror of https://github.com/SFML/SFML.git synced 2025-03-14 01:40:05 +08:00

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

@ -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;