We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f225e2 commit 6544bf4Copy full SHA for 6544bf4
1 file changed
Doc/library/difflib.rst
@@ -724,7 +724,7 @@ Finally, we compare the two:
724
725
>>> result = list(d.compare(text1, text2))
726
727
-``result`` is a list of strings, so let's pretty-print it:
+``result`` is a list of strings, so let's pretty-print it::
728
729
>>> from pprint import pprint
730
>>> pprint(result)
@@ -739,7 +739,7 @@ Finally, we compare the two:
739
'? ++++ ^ ^\n',
740
'+ 5. Flat is better than nested.\n']
741
742
-As a single multi-line string it looks like this:
+As a single multi-line string it looks like this::
743
744
>>> import sys
745
>>> sys.stdout.writelines(result)
0 commit comments