summaryrefslogtreecommitdiff
path: root/docs/tutorials/013/message_queue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorials/013/message_queue.cpp')
-rw-r--r--docs/tutorials/013/message_queue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/013/message_queue.cpp b/docs/tutorials/013/message_queue.cpp
index 4635304a460..67a22f7457b 100644
--- a/docs/tutorials/013/message_queue.cpp
+++ b/docs/tutorials/013/message_queue.cpp
@@ -10,7 +10,7 @@ int run_test (int iterations, int threads, int subtasks)
{
// Create a task with some subtasks. Each Task is a thread
// pool of 'threads' size. If a task has a subtask, it will
- // forward the unit of work to the subtask when finished. See
+ // forward the unit of work to the subtask when finished. See
// task.{h|cpp} for more details.
Task *task = new Task (subtasks);
@@ -84,5 +84,5 @@ template class ACE_Atomic_Op < ACE_Mutex, int >;
#pragma instantiate ACE_Lock_Adapter<ACE_Mutex>;
#pragma instantiate ACE_Atomic_Op<ACE_Mutex, int>;
#endif /*
- ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION
+ ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION
*/