fixup some doc wording
authorBrian Norris <banorris@uci.edu>
Fri, 15 Jun 2012 06:20:20 +0000 (23:20 -0700)
committerBrian Norris <banorris@uci.edu>
Fri, 15 Jun 2012 06:20:20 +0000 (23:20 -0700)
mymemory.h
schedule.h

index b200ae0160c8c0c8ba39ad31384689271986a384..56e690436d1e573da00bf287e6aff2388f476c0c 100644 (file)
@@ -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,
index ad9f11af035b460cf9c5c0457addf44bb6e172db..cba4b11a6d597011910ceec3a55324d5edf136f4 100644 (file)
@@ -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();