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 ```