From 32e73b30eef702904065b63d9c7679c5808a1ccb Mon Sep 17 00:00:00 2001 From: waldo1001 Date: Mon, 13 Dec 2021 17:16:07 +0100 Subject: [PATCH] requested change --- .../Readability/keyword-pairs-indentation/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/BCBestPractices/Readability/keyword-pairs-indentation/index.md b/content/BCBestPractices/Readability/keyword-pairs-indentation/index.md index bc10ec50..9bbae6a9 100644 --- a/content/BCBestPractices/Readability/keyword-pairs-indentation/index.md +++ b/content/BCBestPractices/Readability/keyword-pairs-indentation/index.md @@ -6,20 +6,20 @@ weight = 730 <_Created by Microsoft, Described by waldo_\> ## Description -The `if..then` pair, `while..do` pair, and `for..do` pair must appear on the same line or the same level of indentation. +The `if..then` pair, `while..do` pair, and `for..do` pair must appear on the same line or the same level of indentation. If possible, you can align the lines it is even much more readable. ## Bad code ```al if (x = y) and - (a = b) then + (a = b) then ``` ## Good code ```al if (x = y) and - (a = b) + (a = b) then ```