Skip to content

Commit 20459fc

Browse files
timgates42timabbott
authored andcommitted
docs: Fix simple typo, existant -> existent
There is a small typo in bitfield/tests/tests.py. Should read `existent` rather than `existant`.
1 parent 7d0ff9a commit 20459fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitfield/tests/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_defaults(self):
3131
self.assertEqual(int(bithandler.FLAG_1.number), 1)
3232
self.assertEqual(int(bithandler.FLAG_2.number), 2)
3333
self.assertEqual(int(bithandler.FLAG_3.number), 3)
34-
# Negative test non-existant key.
34+
# Negative test non-existent key.
3535
self.assertRaises(AttributeError, lambda: bithandler.FLAG_4)
3636
# Test bool().
3737
self.assertEqual(bool(bithandler.FLAG_0), False)

0 commit comments

Comments
 (0)