Skip to content

Commit f34fa57

Browse files
committed
typo in comment
1 parent a1b02c0 commit f34fa57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/server/gateio.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void GateIO::moveTasksToSendQueue(std::vector<TaskPtr>& tasks)
5757
{
5858
std::unique_lock<std::mutex> lock(m_tasksMutex);
5959
for (TaskPtr& task: tasks) {
60-
m_logger.queue(LogLevel::Debug, "move task id=", task->jobId(), "finished", (task->hasError()? "with error": "succesfully"), task->error(), "to send queue");
60+
m_logger.queue(LogLevel::Debug, "move task id=", task->jobId(), "finished", (task->hasError()? "with error": "successfully"), task->error(), "to send queue");
6161
m_sendTasks.push_back(std::move(task));
6262
}
6363
tasks.clear();

0 commit comments

Comments
 (0)