From cf204ad5b07abc3a4db42febb9b861fa24bd68ef Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 20 Nov 2015 11:44:58 -0800 Subject: [PATCH] cleanup executeScript comment in Agent --- assignment-client/src/Agent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assignment-client/src/Agent.cpp b/assignment-client/src/Agent.cpp index cb3f4d9b05..2fdba9e256 100644 --- a/assignment-client/src/Agent.cpp +++ b/assignment-client/src/Agent.cpp @@ -183,7 +183,7 @@ void Agent::scriptRequestFinished() { _scriptContents = reply->readAll(); qDebug() << "Downloaded script:" << _scriptContents; - // we could just call executeScript directly - we use a QueuedConnect to allow scriptRequestFinished + // we could just call executeScript directly - we use a QueuedConnection to allow scriptRequestFinished // to return before calling executeScript QMetaObject::invokeMethod(this, "executeScript", Qt::QueuedConnection); } else {