We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe34d74 commit 6183f80Copy full SHA for 6183f80
1 file changed
codespell.py
@@ -51,7 +51,7 @@ class QuietLevels:
51
FIXES = 16
52
53
54
-class Mispell:
+class Misspell:
55
def __init__(self, data, fix, reason):
56
self.data = data
57
self.fix = fix
@@ -253,7 +253,7 @@ def build_dict(filename):
253
data = data[:fix]
254
fix = False
255
256
- misspellings[key] = Mispell(data, fix, reason)
+ misspellings[key] = Misspell(data, fix, reason)
257
258
def ishidden(filename):
259
bfilename = os.path.basename(filename)
0 commit comments