From ca8ff397344fe054228da40ca7009ba5756e7d1a Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Thu, 14 Jun 2012 23:20:20 -0700 Subject: [PATCH] fixup some doc wording --- mymemory.h | 2 +- schedule.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/mymemory.h b/mymemory.h index b200ae01..56e69043 100644 --- a/mymemory.h +++ b/mymemory.h @@ -35,7 +35,7 @@ void MYFREE(void *ptr); void system_free( void * ptr ); void *system_malloc( size_t size ); -/** @brief Provides a non-snapshotting allocators for a STL class. +/** @brief Provides a non-snapshotting allocator for use in STL classes. * * The code was adapted from a code example from the book The C++ * Standard Library - A Tutorial and Reference by Nicolai M. Josuttis, diff --git a/schedule.h b/schedule.h index ad9f11af..cba4b11a 100644 --- a/schedule.h +++ b/schedule.h @@ -11,7 +11,8 @@ /* Forward declaration */ class Thread; -/** @brief The Scheduler class controls the Thread execution schedule. */ +/** @brief The Scheduler class performs the mechanics of Thread execution + * scheduling. */ class Scheduler { public: Scheduler(); -- 2.34.1