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