Bugzilla Bug 174447 fix typos in nsStaticNameTable.h

git-svn-id: svn://10.0.0.236/trunk@131987 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mac.com
2002-10-14 22:39:44 +00:00
parent fd7d4a2856
commit 74a540e41b

View File

@@ -38,18 +38,18 @@
#define nsStaticNameTable_h___
#include "pldhash.h"
/* This class supports case insensitve lookup.
/* This class supports case insensitive lookup.
*
* It differs from atom tables:
* It differs from atom tables:
* - It supports case insensitive lookup.
* - It has minimal footprint by not copying the string table.
* - It does no locking.
* - It returns zero based indexes and const nsCSring& as required by its
* - It returns zero based indexes and const nsCString& as required by its
* callers in the parser.
* - It is not an xpcom interface - meant for fast lookup in static tables.
*
* ***REQUIREMENTS***
* - It *requires* that all entries in the table be lowewcase only.
* - It *requires* that all entries in the table be lowercase only.
* - It *requires* that the table of strings be in memory that lives at least
* as long as this table object - typically a static string array.
*/