From dbdf3b1bb7c5ff348ff6de3925cbc05ce6621f1e Mon Sep 17 00:00:00 2001
From: DisableGraphics <48135147+DisableGraphics@users.noreply.github.com>
Date: Thu, 10 Mar 2022 16:05:31 +0100
Subject: [PATCH] Update guidelines.md
---
guidelines.md | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/guidelines.md b/guidelines.md
index 78e7555..38ee95a 100644
--- a/guidelines.md
+++ b/guidelines.md
@@ -6,13 +6,14 @@ This guide will follow the recommended programming style for scoop, but you are
# Indentation
-Just a single tab when opening blocks is fine
+Just a single tab (Or 4 spaces) when opening blocks is fine
Example:
-`"if >= 0"`
-
`" if <= 3"`
-
`" show"`
-
`"endif"`
-
Note: do not write the double quotes, it's to maintain format, since Markdown doesn't let me put more than one space, for some reason
+```
+if >= 0
+ if <= 3
+ show
+endif
+```
# Printing messages in the screen