fixed comment typo

This commit is contained in:
Robinson 2023-07-20 20:41:23 +02:00
parent 2c0680b513
commit 916ddb857f
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C

View File

@ -291,7 +291,7 @@ open class Server<CONNECTION : Connection>(
// the connection MUST be removed in the same thread that is processing events (it will be removed again in close, and that is expected) // the connection MUST be removed in the same thread that is processing events (it will be removed again in close, and that is expected)
removeConnection(connection) removeConnection(connection)
// we already removed the connection, we can call it again without side affects // we already removed the connection, we can call it again without side effects
connection.close() connection.close()
} }
} }