svn commit: [25972] trunk/uClibc++/include
aldot at uclibc.org
aldot at uclibc.org
Mon Apr 6 08:06:36 UTC 2009
Author: aldot
Date: 2009-04-06 08:06:36 +0000 (Mon, 06 Apr 2009)
New Revision: 25972
Log:
- commentary typo fixes
Modified:
trunk/uClibc++/include/associative_base
Changeset:
Modified: trunk/uClibc++/include/associative_base
===================================================================
--- trunk/uClibc++/include/associative_base 2009-04-06 06:40:57 UTC (rev 25971)
+++ trunk/uClibc++/include/associative_base 2009-04-06 08:06:36 UTC (rev 25972)
@@ -36,12 +36,12 @@
/*
* The basic premise here is that most of the code used by map, multimap, set and
* multiset is really common. There are a number of interface additions, and
- * considerations about how to address multiple enteries with the same key.
- * The goal is that the code tree/storage code should be here, and managing
+ * considerations about how to address multiple entries with the same key.
+ * The goal is that the tree/storage code should be here, and managing
* single or multiple counts will be left to subclasses.
- * Yes, inheritence for the purpose of code sharing is usually a bad idea. However,
- * since our goal is to reduce tht total amount of code written and the overall binary
- * size, this seems to be the best approach possible.
+ * Yes, inheritence for the purpose of code sharing is usually a bad idea.
+ * However, since our goal is to reduce the total amount of code written
+ * and the overall binary size, this seems to be the best approach possible.
*/
template<class Key, class ValueType, class Compare = less<Key>, class Allocator = allocator<ValueType> > class __base_associative;
More information about the uClibc-cvs
mailing list