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.