Skip to content

Commit a0dd925

Browse files
Update index.md
reverted mermaid
1 parent 5a1e3a5 commit a0dd925

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/Day1/index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,10 @@ The `if __name__ == "__main__":` check ensures the `main()` function only runs w
540540

541541
In flow diagrams:
542542
- Rectangles with square or rounded corners mean a step in the process. They represent a step in the process, an operation, or a task. This is where something is done.For example: "Perform Calculation," "Print Report," "Read Data".
543-
```mermaid graph TD A(Rectangle)```
543+
```mermaid
544+
graph TD;
545+
A(Rectangle);
546+
```
544547
- Diamonds are for decisions (or if, then else): They indicates a point where a decision must be made, typically a "Yes/No" or "True/False" question. The paths diverging from the diamond are labeled with the possible answers.
545548
```mermaid
546549
graph TD;

0 commit comments

Comments
 (0)