Skip to content

Commit 591ec09

Browse files
authored
Fix minor typo in atomic_intrusive_queue (#467)
1 parent db925c1 commit 591ec09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/unifex/detail/atomic_intrusive_queue.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class atomic_intrusive_queue {
4545
: head_(initiallyActive ? nullptr : producer_inactive_value()) {}
4646

4747
~atomic_intrusive_queue() {
48-
// Check that all items in this queue have beel dequeued.
48+
// Check that all items in this queue have been dequeued.
4949
// Not doing so is likely a bug in the code.
5050
UNIFEX_ASSERT(
5151
head_.load(std::memory_order_relaxed) == nullptr ||

0 commit comments

Comments
 (0)