codespell itself
diff --git a/codespell.py b/codespell.py
index ea22c2b..8541de9 100755
--- a/codespell.py
+++ b/codespell.py
@@ -51,7 +51,7 @@
     FIXES = 16
 
 
-class Mispell:
+class Misspell:
     def __init__(self, data, fix, reason):
         self.data = data
         self.fix = fix
@@ -253,7 +253,7 @@
                 data = data[:fix]
                 fix = False
 
-            misspellings[key] = Mispell(data, fix, reason)
+            misspellings[key] = Misspell(data, fix, reason)
 
 def ishidden(filename):
     bfilename = os.path.basename(filename)