You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@brpc.apache.org by lo...@apache.org on 2023/01/15 10:23:33 UTC

[brpc] branch master updated: typo fix for bthread introduction

This is an automated email from the ASF dual-hosted git repository.

lorinlee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brpc.git


The following commit(s) were added to refs/heads/master by this push:
     new 518d216d typo fix for bthread introduction
     new 9e8c0dbf Merge pull request #2083 from freemandealer/fix-an
518d216d is described below

commit 518d216da22761333f2f4cd29f3b63f848baa0cb
Author: freemandealer <fr...@gmail.com>
AuthorDate: Wed Jan 11 21:44:32 2023 +0800

    typo fix for bthread introduction
    
    As term 'M:N' starts with a vowel sound [e], so it should be 'an' instead of
    'a' grammatically.
    
    Signed-off-by: freemandealer <fr...@gmail.com>
---
 docs/en/threading_overview.md      | 2 +-
 src/bthread/bthread.cpp            | 2 +-
 src/bthread/bthread.h              | 2 +-
 src/bthread/butex.cpp              | 2 +-
 src/bthread/butex.h                | 2 +-
 src/bthread/comlog_initializer.h   | 2 +-
 src/bthread/condition_variable.cpp | 2 +-
 src/bthread/condition_variable.h   | 2 +-
 src/bthread/countdown_event.cpp    | 2 +-
 src/bthread/countdown_event.h      | 2 +-
 src/bthread/errno.cpp              | 2 +-
 src/bthread/errno.h                | 2 +-
 src/bthread/execution_queue.cpp    | 2 +-
 src/bthread/execution_queue.h      | 2 +-
 src/bthread/execution_queue_inl.h  | 2 +-
 src/bthread/fd.cpp                 | 2 +-
 src/bthread/id.cpp                 | 2 +-
 src/bthread/id.h                   | 2 +-
 src/bthread/interrupt_pthread.cpp  | 2 +-
 src/bthread/interrupt_pthread.h    | 2 +-
 src/bthread/key.cpp                | 2 +-
 src/bthread/list_of_abafree_id.h   | 2 +-
 src/bthread/log.h                  | 2 +-
 src/bthread/mutex.cpp              | 2 +-
 src/bthread/mutex.h                | 2 +-
 src/bthread/parking_lot.h          | 2 +-
 src/bthread/processor.h            | 2 +-
 src/bthread/remote_task_queue.h    | 2 +-
 src/bthread/stack.cpp              | 2 +-
 src/bthread/stack.h                | 2 +-
 src/bthread/stack_inl.h            | 2 +-
 src/bthread/sys_futex.cpp          | 2 +-
 src/bthread/sys_futex.h            | 2 +-
 src/bthread/task_control.cpp       | 2 +-
 src/bthread/task_control.h         | 2 +-
 src/bthread/task_group.cpp         | 2 +-
 src/bthread/task_group.h           | 2 +-
 src/bthread/task_group_inl.h       | 2 +-
 src/bthread/task_meta.h            | 2 +-
 src/bthread/timer_thread.cpp       | 2 +-
 src/bthread/timer_thread.h         | 2 +-
 src/bthread/types.h                | 2 +-
 src/bthread/unstable.h             | 2 +-
 src/bthread/work_stealing_queue.h  | 2 +-
 src/butil/object_pool.h            | 2 +-
 src/butil/object_pool_inl.h        | 2 +-
 src/butil/resource_pool.h          | 2 +-
 src/butil/resource_pool_inl.h      | 2 +-
 48 files changed, 48 insertions(+), 48 deletions(-)

diff --git a/docs/en/threading_overview.md b/docs/en/threading_overview.md
index f30ed5ed..d67d14d9 100644
--- a/docs/en/threading_overview.md
+++ b/docs/en/threading_overview.md
@@ -28,7 +28,7 @@ How multi-threaded reactors work and problems related are demonstrated below:
 
 ## M:N threading library
 
-This model maps M user threads into N system threads. A M:N threading library is able to decide when and where to run a piece of code and when to end the execution, which is more flexible at scheduling compared to multi-threaded reactors. But full-featured M:N threading libraries are difficult to implement and remaining as active research topics. The M:N threading library that we're talking about is specialized for building online services, in which case, some of the requirements can be  [...]
+This model maps M user threads into N system threads. An M:N threading library is able to decide when and where to run a piece of code and when to end the execution, which is more flexible at scheduling compared to multi-threaded reactors. But full-featured M:N threading libraries are difficult to implement and remaining as active research topics. The M:N threading library that we're talking about is specialized for building online services, in which case, some of the requirements can be [...]
 
 # Issues
 
diff --git a/src/bthread/bthread.cpp b/src/bthread/bthread.cpp
index bcffaa41..5ac0c3b1 100644
--- a/src/bthread/bthread.cpp
+++ b/src/bthread/bthread.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/bthread.h b/src/bthread/bthread.h
index c5fa4c6d..3f55eb67 100644
--- a/src/bthread/bthread.h
+++ b/src/bthread/bthread.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/butex.cpp b/src/bthread/butex.cpp
index 99f7d7ea..757b3143 100644
--- a/src/bthread/butex.cpp
+++ b/src/bthread/butex.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 22 17:30:12 CST 2014
 
diff --git a/src/bthread/butex.h b/src/bthread/butex.h
index db4ec341..93a1f6ec 100644
--- a/src/bthread/butex.h
+++ b/src/bthread/butex.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 22 17:30:12 CST 2014
 
diff --git a/src/bthread/comlog_initializer.h b/src/bthread/comlog_initializer.h
index 29f82f92..f216328b 100644
--- a/src/bthread/comlog_initializer.h
+++ b/src/bthread/comlog_initializer.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Mon Sep 15 10:51:15 CST 2014
 
diff --git a/src/bthread/condition_variable.cpp b/src/bthread/condition_variable.cpp
index 789aa147..e04187d3 100644
--- a/src/bthread/condition_variable.cpp
+++ b/src/bthread/condition_variable.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Aug  3 12:46:15 CST 2014
 
diff --git a/src/bthread/condition_variable.h b/src/bthread/condition_variable.h
index 789d2ba1..c684cf6c 100644
--- a/src/bthread/condition_variable.h
+++ b/src/bthread/condition_variable.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: 2015/12/14 21:26:26
 
diff --git a/src/bthread/countdown_event.cpp b/src/bthread/countdown_event.cpp
index 0d9a93fe..f399a3c8 100644
--- a/src/bthread/countdown_event.cpp
+++ b/src/bthread/countdown_event.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: 2016/06/03 13:15:24
 
diff --git a/src/bthread/countdown_event.h b/src/bthread/countdown_event.h
index acb205c6..0f2c234d 100644
--- a/src/bthread/countdown_event.h
+++ b/src/bthread/countdown_event.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: 2016/06/03 13:06:40
 
diff --git a/src/bthread/errno.cpp b/src/bthread/errno.cpp
index b5d45b83..7f5e2ca0 100644
--- a/src/bthread/errno.cpp
+++ b/src/bthread/errno.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Wed Jul 30 11:47:19 CST 2014
 
diff --git a/src/bthread/errno.h b/src/bthread/errno.h
index 600fb088..2045e76c 100644
--- a/src/bthread/errno.h
+++ b/src/bthread/errno.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Wed Jul 30 11:47:19 CST 2014
 
diff --git a/src/bthread/execution_queue.cpp b/src/bthread/execution_queue.cpp
index 6461fef9..f7fd9eae 100644
--- a/src/bthread/execution_queue.cpp
+++ b/src/bthread/execution_queue.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: 2016/04/16 18:43:24
 
diff --git a/src/bthread/execution_queue.h b/src/bthread/execution_queue.h
index 83ebaf59..f225f6d0 100644
--- a/src/bthread/execution_queue.h
+++ b/src/bthread/execution_queue.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: 2015/10/23 18:16:16
 
diff --git a/src/bthread/execution_queue_inl.h b/src/bthread/execution_queue_inl.h
index a346786d..c67cf659 100644
--- a/src/bthread/execution_queue_inl.h
+++ b/src/bthread/execution_queue_inl.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: 2015/10/27 17:39:48
 
diff --git a/src/bthread/fd.cpp b/src/bthread/fd.cpp
index d9378b9d..f26cbd07 100644
--- a/src/bthread/fd.cpp
+++ b/src/bthread/fd.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Thu Aug  7 18:56:27 CST 2014
 
diff --git a/src/bthread/id.cpp b/src/bthread/id.cpp
index 23046b25..41c49a3f 100644
--- a/src/bthread/id.cpp
+++ b/src/bthread/id.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Aug  3 12:46:15 CST 2014
 
diff --git a/src/bthread/id.h b/src/bthread/id.h
index 5364ea55..f9fef65a 100644
--- a/src/bthread/id.h
+++ b/src/bthread/id.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/interrupt_pthread.cpp b/src/bthread/interrupt_pthread.cpp
index 06438869..1c7c78e7 100644
--- a/src/bthread/interrupt_pthread.cpp
+++ b/src/bthread/interrupt_pthread.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/interrupt_pthread.h b/src/bthread/interrupt_pthread.h
index 99edd511..3381cce6 100644
--- a/src/bthread/interrupt_pthread.h
+++ b/src/bthread/interrupt_pthread.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/key.cpp b/src/bthread/key.cpp
index ca5e079d..8f850f7f 100644
--- a/src/bthread/key.cpp
+++ b/src/bthread/key.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Aug  3 12:46:15 CST 2014
 
diff --git a/src/bthread/list_of_abafree_id.h b/src/bthread/list_of_abafree_id.h
index bf1aba0f..ac2b2234 100644
--- a/src/bthread/list_of_abafree_id.h
+++ b/src/bthread/list_of_abafree_id.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Mon Jun 20 11:57:23 CST 2016
 
diff --git a/src/bthread/log.h b/src/bthread/log.h
index 2f3522b2..3aa1c2c7 100644
--- a/src/bthread/log.h
+++ b/src/bthread/log.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Mon Sep 15 10:51:15 CST 2014
 
diff --git a/src/bthread/mutex.cpp b/src/bthread/mutex.cpp
index 639da259..3d38ef93 100644
--- a/src/bthread/mutex.cpp
+++ b/src/bthread/mutex.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Aug  3 12:46:15 CST 2014
 
diff --git a/src/bthread/mutex.h b/src/bthread/mutex.h
index 257f1791..242a620f 100644
--- a/src/bthread/mutex.h
+++ b/src/bthread/mutex.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: 2015/12/14 18:17:04
 
diff --git a/src/bthread/parking_lot.h b/src/bthread/parking_lot.h
index 2efc8354..d42a560e 100644
--- a/src/bthread/parking_lot.h
+++ b/src/bthread/parking_lot.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: 2017/07/27 23:07:06
 
diff --git a/src/bthread/processor.h b/src/bthread/processor.h
index fcc244ce..2f5badf9 100644
--- a/src/bthread/processor.h
+++ b/src/bthread/processor.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Fri Dec  5 13:40:57 CST 2014
 
diff --git a/src/bthread/remote_task_queue.h b/src/bthread/remote_task_queue.h
index ab75727a..ab05bdde 100644
--- a/src/bthread/remote_task_queue.h
+++ b/src/bthread/remote_task_queue.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun, 22 Jan 2017
 
diff --git a/src/bthread/stack.cpp b/src/bthread/stack.cpp
index 43e57efc..c312ef83 100644
--- a/src/bthread/stack.cpp
+++ b/src/bthread/stack.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Sep  7 22:37:39 CST 2014
 
diff --git a/src/bthread/stack.h b/src/bthread/stack.h
index 7f3b1d80..46cafb4a 100644
--- a/src/bthread/stack.h
+++ b/src/bthread/stack.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Sep  7 22:37:39 CST 2014
 
diff --git a/src/bthread/stack_inl.h b/src/bthread/stack_inl.h
index 0ccff13f..868775d4 100644
--- a/src/bthread/stack_inl.h
+++ b/src/bthread/stack_inl.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Sep  7 22:37:39 CST 2014
 
diff --git a/src/bthread/sys_futex.cpp b/src/bthread/sys_futex.cpp
index 11387a07..803bec66 100644
--- a/src/bthread/sys_futex.cpp
+++ b/src/bthread/sys_futex.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Wed Mar 14 17:44:58 CST 2018
 
diff --git a/src/bthread/sys_futex.h b/src/bthread/sys_futex.h
index 11470f60..786d87e0 100644
--- a/src/bthread/sys_futex.h
+++ b/src/bthread/sys_futex.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/task_control.cpp b/src/bthread/task_control.cpp
index 3b90dc78..fce24459 100644
--- a/src/bthread/task_control.cpp
+++ b/src/bthread/task_control.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/task_control.h b/src/bthread/task_control.h
index fd40d6ce..9596d032 100644
--- a/src/bthread/task_control.h
+++ b/src/bthread/task_control.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/task_group.cpp b/src/bthread/task_group.cpp
index 94ce5eb7..8b77b73c 100644
--- a/src/bthread/task_group.cpp
+++ b/src/bthread/task_group.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/task_group.h b/src/bthread/task_group.h
index 12ee126c..2a295046 100644
--- a/src/bthread/task_group.h
+++ b/src/bthread/task_group.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/task_group_inl.h b/src/bthread/task_group_inl.h
index d48ceaa8..45626ceb 100644
--- a/src/bthread/task_group_inl.h
+++ b/src/bthread/task_group_inl.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/task_meta.h b/src/bthread/task_meta.h
index 740d7d92..482be700 100644
--- a/src/bthread/task_meta.h
+++ b/src/bthread/task_meta.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/timer_thread.cpp b/src/bthread/timer_thread.cpp
index 2c2dd9b2..1610f0b3 100644
--- a/src/bthread/timer_thread.cpp
+++ b/src/bthread/timer_thread.cpp
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 
 #include <queue>                           // heap functions
diff --git a/src/bthread/timer_thread.h b/src/bthread/timer_thread.h
index c12c2a8b..139c2e98 100644
--- a/src/bthread/timer_thread.h
+++ b/src/bthread/timer_thread.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 
 #ifndef BTHREAD_TIMER_THREAD_H
diff --git a/src/bthread/types.h b/src/bthread/types.h
index d56368f1..a84e4793 100644
--- a/src/bthread/types.h
+++ b/src/bthread/types.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/unstable.h b/src/bthread/unstable.h
index dadf9c04..61f4b1ab 100644
--- a/src/bthread/unstable.h
+++ b/src/bthread/unstable.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/bthread/work_stealing_queue.h b/src/bthread/work_stealing_queue.h
index 357f1414..06e9ed07 100644
--- a/src/bthread/work_stealing_queue.h
+++ b/src/bthread/work_stealing_queue.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Tue Jul 10 17:40:58 CST 2012
 
diff --git a/src/butil/object_pool.h b/src/butil/object_pool.h
index 2267b296..b663fe84 100644
--- a/src/butil/object_pool.h
+++ b/src/butil/object_pool.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Jul 13 15:04:18 CST 2014
 
diff --git a/src/butil/object_pool_inl.h b/src/butil/object_pool_inl.h
index 8c6e483a..0371eff0 100644
--- a/src/butil/object_pool_inl.h
+++ b/src/butil/object_pool_inl.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Jul 13 15:04:18 CST 2014
 
diff --git a/src/butil/resource_pool.h b/src/butil/resource_pool.h
index 0a040588..cc0fb000 100644
--- a/src/butil/resource_pool.h
+++ b/src/butil/resource_pool.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Jul 13 15:04:18 CST 2014
 
diff --git a/src/butil/resource_pool_inl.h b/src/butil/resource_pool_inl.h
index d5a2a37d..4ebe4ad1 100644
--- a/src/butil/resource_pool_inl.h
+++ b/src/butil/resource_pool_inl.h
@@ -15,7 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
-// bthread - A M:N threading library to make applications more concurrent.
+// bthread - An M:N threading library to make applications more concurrent.
 
 // Date: Sun Jul 13 15:04:18 CST 2014
 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@brpc.apache.org
For additional commands, e-mail: dev-help@brpc.apache.org