diff --git a/content/BCBestPractices/Readability/end-else-pair/index.md b/content/BCBestPractices/Readability/end-else-pair/index.md index 68223d37..88511484 100644 --- a/content/BCBestPractices/Readability/end-else-pair/index.md +++ b/content/BCBestPractices/Readability/end-else-pair/index.md @@ -18,6 +18,7 @@ The `end else` pair should always appear on the same line. end else ... + end; ``` ## Good code @@ -28,6 +29,7 @@ The `end else` pair should always appear on the same line. ... end else ... + end; ``` ## [Discussions](https://github.com/microsoft/alguidelines/discussions/categories/bc-best-practices?discussions_q=end+else/pair+category%3A%22BC+Best+Practices%22)