From b20535245b3ee130fb971d3d6e130c1b80d72049 Mon Sep 17 00:00:00 2001 From: christianbraeunlich Date: Sat, 26 Mar 2022 09:11:01 +0100 Subject: [PATCH] added suggestions by TheDoubleH --- .../docs/BestPractices/blank-lines-when-not-to-use/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/BestPractices/blank-lines-when-not-to-use/index.md b/content/docs/BestPractices/blank-lines-when-not-to-use/index.md index ef2cfc00..3c9c5439 100644 --- a/content/docs/BestPractices/blank-lines-when-not-to-use/index.md +++ b/content/docs/BestPractices/blank-lines-when-not-to-use/index.md @@ -9,7 +9,7 @@ Do not use blank lines: - at the beginning or end of any functions (after `begin` and before `end`) - inside multiline expressions -## #1 Example +## Example 1 ### Bad code @@ -33,7 +33,7 @@ begin end; ``` -## #2 Example +## Example 2 ### Bad code