Skip to content

Commit

Permalink
BCA: CS: Fix mermaid diagrams
Browse files Browse the repository at this point in the history
  • Loading branch information
sounddrill31 authored Dec 29, 2024
1 parent 8afac80 commit 6aa1212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NEP2020/2024/BCA/3rdsem/cs/solved/important/important-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ Use the `if` statement to specify a block of C# code to be executed if a conditi

```mermaid
graph TD
A(([Start])) --> B{Condition}
A([Start]) --> B{Condition}
B -- Yes --> C[Execute Code Block]
B -- No --> D((([End])))
B -- No --> D([End])
C --> D
```

Expand Down

0 comments on commit 6aa1212

Please sign in to comment.