diff --git a/NEP2020/2024/BCA/3rdsem/cs/solved/important/important-1.md b/NEP2020/2024/BCA/3rdsem/cs/solved/important/important-1.md index 876eb94..a3d28d1 100644 --- a/NEP2020/2024/BCA/3rdsem/cs/solved/important/important-1.md +++ b/NEP2020/2024/BCA/3rdsem/cs/solved/important/important-1.md @@ -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 ```