summaryrefslogtreecommitdiff
path: root/src/mbgl/util/work_queue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/work_queue.cpp')
-rw-r--r--src/mbgl/util/work_queue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/util/work_queue.cpp b/src/mbgl/util/work_queue.cpp
index 80c4af8778..d0033e3ca2 100644
--- a/src/mbgl/util/work_queue.cpp
+++ b/src/mbgl/util/work_queue.cpp
@@ -12,7 +12,7 @@ WorkQueue::WorkQueue() : runLoop(RunLoop::Get()) {
WorkQueue::~WorkQueue() {
assert(runLoop == RunLoop::Get());
- // Cancel all pending WorkRequests.
+ // Cancel all pending AsyncRequests.
while (!queue.empty()) {
queue.pop();
}