Skip to content

Commit

Permalink
Merge pull request #261 from guangqianpeng/master
Browse files Browse the repository at this point in the history
Fix typo in bounded_queue.h
  • Loading branch information
jamesge authored Mar 12, 2018
2 parents 0c90dbc + e394185 commit 2009890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/butil/containers/bounded_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class BoundedQueue {
};

// 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)
Expand Down

0 comments on commit 2009890

Please sign in to comment.