From faabb8d921e9794a085eea394aad1b25abe14d0c Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Mon, 27 Jul 2015 21:04:45 -0400
Subject: [PATCH] README code fix

---
 README.md | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 6b5f20d14..14659c0c0 100644
--- a/README.md
+++ b/README.md
@@ -198,10 +198,12 @@ relevant programs, notably "ugen" (which is just a tilde object; see d_ugen.c.)
 1.5.  Spacing.  Tabs are 8 spaces; indentation is 4 spaces.  Indenting
 curly brackets are by themselves on their own lines, as in:
 
-    if (x)
-    {
-	x = 0;
-    }
+```c
+if (x)
+{
+    x = 0;
+}
+```
 
 Lines should fit within 80 spaces.
 
-- 
GitLab