@@ -74,7 +74,7 @@ def assert_produces_warning(expected_warning=Warning, filter_level="always",
7474 with warnings .catch_warnings (record = True ) as w :
7575
7676 if clear is not None :
77- # make sure that we are clearning these warnings
77+ # make sure that we are clearing these warnings
7878 # if they have happened before
7979 # to guarantee that we will catch them
8080 if not is_list_like (clear ):
@@ -224,7 +224,7 @@ def test_conversion_with_markdown_extensions(self):
224224 self .assertEqualExceptForNewlineEnd (expected_without_extension , received_without_extension )
225225
226226 def test_conversion_from_markdown_with_extensions (self ):
227- # Aparently without the extension, ~~ gets turned into different code
227+ # Apparently without the extension, ~~ gets turned into different code
228228 # depending on the pandoc version. So we do not test for that anymore...
229229 input = u'~~strike~~'
230230 expected_with_extension = u'<p><del>strike</del></p>'
@@ -278,7 +278,7 @@ def test_unicode_input(self):
278278 self .assertTrue (expected == written )
279279 self .assertTrue (isinstance (written , unicode_type ))
280280
281- # Only use german umlauts in th next test, as iso-8859-15 covers that
281+ # Only use german umlauts in the next test, as iso-8859-15 covers that
282282 expected = u'äüäö{0}' .format (os .linesep )
283283 bytes = u'<p>äüäö</p>' .encode ("iso-8859-15" )
284284
0 commit comments