Skip to content

Commit fb2b638

Browse files
projectgusdpgeorge
authored andcommitted
docs: Label table columns as "CPython output" and "MicroPython output".
Abbreviating these doesn't really save space in the docs, as the code blocks in the next row are always wider than the column headings. Signed-off-by: Angus Gratton <angus@redyak.com.au>
1 parent a79e1fd commit fb2b638

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/gen-cpydiff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def gen_rst(results):
260260
output_cpy = ("::\n\n" if output_cpy != "" else "") + output_cpy
261261
output_upy = indent(output.output_upy, TAB).rstrip()
262262
output_upy = ("::\n\n" if output_upy != "" else "") + output_upy
263-
table = gen_table([["CPy output:", output_cpy], ["uPy output:", output_upy]])
263+
table = gen_table([["CPython output:", output_cpy], ["MicroPython output:", output_upy]])
264264
rst.write(table)
265265

266266
template = open(INDEXTEMPLATE, "r")

0 commit comments

Comments
 (0)