From 6aa12127a6cc5822f14ca278735aa7a65f8f5565 Mon Sep 17 00:00:00 2001 From: SoundDrill31 <84176052+sounddrill31@users.noreply.github.com> Date: Sun, 29 Dec 2024 19:13:26 +0530 Subject: [PATCH] BCA: CS: Fix mermaid diagrams --- NEP2020/2024/BCA/3rdsem/cs/solved/important/important-1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ```