diff --git a/emper/ContextManager.cpp b/emper/ContextManager.cpp
index 262b60a9a1e05f98051745af16ae8765ad8267a0..57d6784a7caf8d17697dd5f326a34657cd163597 100644
--- a/emper/ContextManager.cpp
+++ b/emper/ContextManager.cpp
@@ -31,7 +31,7 @@ Context* ContextManager::getFreeContext() {
 	if (likely(poped)) return context;
 
 	const workerid_t workerCount = runtime.getWorkerCount();
-	// Fallback to queue-stealing.
+	// Fallback to context-stealing.
 	workerid_t startWorkerId = Runtime::rand() % workerCount;
 	for (workerid_t i = 0; i < workerCount; ++i) {
 		workerid_t victim = (startWorkerId + i) % workerCount;