From 34c84872b82e59c84b8466ee0ad6f285365a803c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Maro=C5=84?= Date: Wed, 15 Dec 2021 07:57:45 +0100 Subject: [PATCH] casing of TRUE is not the point of this bad code example --- .../BCBestPractices/Readability/separate-if-and-else/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/BCBestPractices/Readability/separate-if-and-else/index.md b/content/BCBestPractices/Readability/separate-if-and-else/index.md index 77938943..b74acec1 100644 --- a/content/BCBestPractices/Readability/separate-if-and-else/index.md +++ b/content/BCBestPractices/Readability/separate-if-and-else/index.md @@ -11,7 +11,7 @@ weight = 1050 ## Bad code ```al - if Atom = '\>' then HasLogicalOperator := TRUE else begin + if Atom = '\>' then HasLogicalOperator := true else begin ... end; ``` @@ -31,4 +31,4 @@ weight = 1050 You can find discussions on all "Best Practices" [here](https://github.com/microsoft/alguidelines/discussions/categories/bc-best-practices). -If you don't find the discussion of this guideline, please feel fee to create a new one with the same title as this article. \ No newline at end of file +If you don't find the discussion of this guideline, please feel fee to create a new one with the same title as this article.