From de8c4b0241a28d0b98495926b47ffb7e0517d6d0 Mon Sep 17 00:00:00 2001 From: waldo1001 Date: Mon, 13 Dec 2021 17:17:14 +0100 Subject: [PATCH] Added End statement --- content/BCBestPractices/Readability/case-actions/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/BCBestPractices/Readability/case-actions/index.md b/content/BCBestPractices/Readability/case-actions/index.md index aabd6e9a..15417a6d 100644 --- a/content/BCBestPractices/Readability/case-actions/index.md +++ b/content/BCBestPractices/Readability/case-actions/index.md @@ -15,7 +15,7 @@ A CASE action should start on a line after the possibility. case Letter of 'A': Letter2 := '10'; 'B': Letter2 := '11'; - ... + end; ``` ## Good code @@ -26,7 +26,7 @@ A CASE action should start on a line after the possibility. Letter2 := '10'; 'B': Letter2 := '11'; - ... + end; ``` ## [Discussions](https://github.com/microsoft/alguidelines/discussions/categories/bc-best-practices?discussions_q=case+action+on+next+line+category%3A%22BC+Best+Practices%22)