Fix Mermaid diagram syntax - change I/O to IO to avoid lexical error
This commit is contained in:
+2
-2
@@ -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])}]
|
||||
```
|
||||
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user