shithub: leaf

Download patch

ref: 2c20a851809573a15d132122ab7006280325a340
parent: e679fc12912fe8e449e11e34b2544919dfaaa19e
author: Jeff Snyder <jeff@snyderphonics.com>
date: Sat Feb 15 19:30:00 EST 2020

Update README.md

--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@
 
 Other interesting projects to check out that similarly target embedded applicatons are: TeensyAudio (C++), Hoxton Owl (C++), Axoloti (C), and Mutable Instruments (C++). 
 
-(1) LEAF has no dependencies on any other code, except for the standard math.h functions (sinf(), etc.)
+(1) LEAF has no dependencies on any other code, except for the standard math.h functions like sinf().
 
 (2) Use of standard malloc and calloc are avoided, and a custom memory pool implementation is included instead. This allows dynamic memory allocation/deallocation within a fixed block size, with more control over where the memory is located (very useful for embedded systems).