Commit 51ef074d authored by Mark Dickinson's avatar Mark Dickinson

Docstring typo fix: Arithmentic -> Arithmetic.

parent fb92f393
...@@ -11,7 +11,7 @@ Simple usage: ...@@ -11,7 +11,7 @@ Simple usage:
import unittest import unittest
class IntegerArithmenticTestCase(unittest.TestCase): class IntegerArithmeticTestCase(unittest.TestCase):
def testAdd(self): ## test method names begin 'test*' def testAdd(self): ## test method names begin 'test*'
self.assertEqual((1 + 2), 3) self.assertEqual((1 + 2), 3)
self.assertEqual(0 + 1, 1) self.assertEqual(0 + 1, 1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment