From 74a540e41bbb0ddbd9d581d5563e1d969ec25bab Mon Sep 17 00:00:00 2001 From: "timeless%mac.com" Date: Mon, 14 Oct 2002 22:39:44 +0000 Subject: [PATCH] Bugzilla Bug 174447 fix typos in nsStaticNameTable.h git-svn-id: svn://10.0.0.236/trunk@131987 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/ds/nsStaticNameTable.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/xpcom/ds/nsStaticNameTable.h b/mozilla/xpcom/ds/nsStaticNameTable.h index cc038927018..d445a4d117c 100644 --- a/mozilla/xpcom/ds/nsStaticNameTable.h +++ b/mozilla/xpcom/ds/nsStaticNameTable.h @@ -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. */