shithub: leaf

Download patch

ref: ae058c07006ea156dc3d587ef15d7e1228c1b543
parent: 38a6f10d5fd2e012a3ebd48ecb2199db8c5f2640
author: Jeff Snyder <jeff@snyderphonics.com>
date: Sat Feb 15 19:18:54 EST 2020

Update README.md

--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@
 
 
 ///
-LEAF conventions:
+**LEAF conventions:**
 
 Objects types start with a lowercase t: like tCycle, tSawtooth, tRamp, tEnvelopeFollower
 
@@ -29,8 +29,8 @@
 
 
 
-Example of using LEAF:
-
+**Example of using LEAF:**
+```
 //in your user code, create an instance of a leaf object
 
 tCycle mySine;
@@ -73,5 +73,5 @@
     audioBuffer[i] = tCycle_tick(&mySine);
   }
 }
-
+```