From e3941855b8900e363c5663eb764e3a9c7c1e4d73 Mon Sep 17 00:00:00 2001 From: frank <625727796@qq.com> Date: Sun, 11 Mar 2018 20:05:26 +0800 Subject: [PATCH] Fix typo in bounded_queue.h --- src/butil/containers/bounded_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/butil/containers/bounded_queue.h b/src/butil/containers/bounded_queue.h index 54b3f7c1ea..63ad3195e2 100644 --- a/src/butil/containers/bounded_queue.h +++ b/src/butil/containers/bounded_queue.h @@ -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)