From fb2b638ba0837b188deb0386270973261eb41fc0 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Wed, 24 Sep 2025 11:22:25 +1000 Subject: [PATCH] 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 --- tools/gen-cpydiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gen-cpydiff.py b/tools/gen-cpydiff.py index 3bb928090b..af965a7bc8 100644 --- a/tools/gen-cpydiff.py +++ b/tools/gen-cpydiff.py @@ -260,7 +260,7 @@ def gen_rst(results): output_cpy = ("::\n\n" if output_cpy != "" else "") + output_cpy output_upy = indent(output.output_upy, TAB).rstrip() output_upy = ("::\n\n" if output_upy != "" else "") + output_upy - table = gen_table([["CPy output:", output_cpy], ["uPy output:", output_upy]]) + table = gen_table([["CPython output:", output_cpy], ["MicroPython output:", output_upy]]) rst.write(table) template = open(INDEXTEMPLATE, "r")