From 6877f439e9025f0d0495d266dcd06ed8379c8eec Mon Sep 17 00:00:00 2001 From: waldo1001 Date: Mon, 13 Dec 2021 17:12:15 +0100 Subject: [PATCH] requested change --- .../BCBestPractices/Readability/line-start-keywords/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/BCBestPractices/Readability/line-start-keywords/index.md b/content/BCBestPractices/Readability/line-start-keywords/index.md index 7f537b00..503768e7 100644 --- a/content/BCBestPractices/Readability/line-start-keywords/index.md +++ b/content/BCBestPractices/Readability/line-start-keywords/index.md @@ -25,7 +25,8 @@ The `end`, `if`, `repeat`, `for`, `while`, `else` and `case` statement should al if IsSalespersonCode then ValidateSalespersonCode else - if IsSalesCycleCode then ValidatSalesCycleCode; + if IsSalesCycleCode then + ValidatSalesCycleCode; ```