Commit e3941855 authored by frank's avatar frank

Fix typo in bounded_queue.h

parent 98755bbb
......@@ -66,7 +66,7 @@ public:
};
// Construct a queue with the given capacity.
// The malloc() may fail sliently, call initialized() to test validity
// The malloc() may fail silently, call initialized() to test validity
// of the queue.
explicit BoundedQueue(size_t capacity)
: _count(0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment