Update TODO based on work for 0.4.1
[python-rwhoisd.git] / rwhoisd / MemDB.py
index fec9970..47cba41 100644 (file)
@@ -2,8 +2,6 @@
 #
 # Copyright (C) 2003, David E. Blacka
 #
-# $Id: MemDB.py,v 1.3 2003/04/28 16:44:09 davidb Exp $
-#
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
@@ -36,7 +34,7 @@ class MemDB:
         # string IDs, values are rwhoisobject instances.
         self.main_index = {}
 
-        # dictonary holding all of the seen attributes.  keys are
+        # dictionary holding all of the seen attributes.  keys are
         # lowercase attribute names, value is a character indicating
         # the index type (if indexed), or None if not indexed.  Index
         # type characters a 'N' for normal string index, 'C' for CIDR
@@ -157,7 +155,7 @@ class MemDB:
     def index_data(self):
         """Prepare the indexes for searching.  Currently, this isn't
         strictly necessary (the indexes will prepare themselves when
-        necessary), but it should elminate a penalty on initial
+        necessary), but it should eliminate a penalty on initial
         searches"""
 
         for i in self.indexes.values():