From 6d7f71199019ec5fb077e08f28bfcea2ca7ea944 Mon Sep 17 00:00:00 2001 From: Simon Walton Date: Wed, 25 Sep 2019 09:33:49 -0700 Subject: [PATCH] Remove typo that somehow got into a comment --- libraries/networking/src/udt/Socket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/networking/src/udt/Socket.cpp b/libraries/networking/src/udt/Socket.cpp index 5b3e2e1b5b..7e1ab02a76 100644 --- a/libraries/networking/src/udt/Socket.cpp +++ b/libraries/networking/src/udt/Socket.cpp @@ -261,7 +261,7 @@ Connection* Socket::findOrCreateConnection(const HifiSockAddr& sockAddr, bool fi // we did not have a matching connection, time to see if we should make one if (filterCreate && _connectionCreationFilterOperator && !_connectionCreationFilterOperator(sockAddr)) { - // the connection creation filter did not allow us to create a new connectionclientHandshakeRequestComplete + // the connection creation filter did not allow us to create a new connection #ifdef UDT_CONNECTION_DEBUG qCDebug(networking) << "Socket::findOrCreateConnection refusing to create Connection class for" << sockAddr << "due to connection creation filter";