Fix Mermaid diagram syntax - change I/O to IO to avoid lexical error

This commit is contained in:
Ein Anderssono
2026-04-24 01:57:20 +02:00
parent 4f0f81965d
commit ea42089441
8 changed files with 149 additions and 149 deletions
+2 -2
View File
@@ -64,7 +64,7 @@ gantt
gantt += f" section {lang}\n"
gantt += f" Startup :0, {startup}\n"
gantt += f" Calculation :{startup}, {startup + calc}\n"
gantt += f" I/O :{startup + calc}, {startup + calc + io}\n"
gantt += f" IO :{startup + calc}, {startup + calc + io}\n"
gantt += "```\n"
@@ -90,7 +90,7 @@ xychart-beta
bar Startup [{', '.join([str(m['startup_time']) for _, m in top_20])}]
bar Calculation [{', '.join([str(m['calc_time']) for _, m in top_20])}]
bar I/O [{', '.join([str(m['io_time']) for _, m in top_20])}]
bar IO [{', '.join([str(m['io_time']) for _, m in top_20])}]
```
"""