Codefix: typos in variable/constant/function names

This commit is contained in:
Rubidium
2025-08-31 09:26:41 +02:00
committed by rubidium42
parent da8422a656
commit 4fb749886a
6 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ void LinkGraphSchedule::JoinNext()
delete next; // implicitly joins the thread
if (LinkGraph::IsValidID(id)) {
LinkGraph *lg = LinkGraph::Get(id);
this->Unqueue(lg); // Unqueue to avoid double-queueing recycled IDs.
this->Dequeue(lg); // Dequeue to avoid double-queueing recycled IDs.
this->Queue(lg);
}
}