diff --git a/README.md b/README.md
index 90ca04b19003f54fa546a2d182aea732a87f38f5..6e4ab723de6f5efcc23b04f588e35039bb157f6e 100644
--- a/README.md
+++ b/README.md
@@ -106,10 +106,13 @@ Todo
 
 **Public Function Members**
 - `void start_drawing(const float x, const float y)`:
-  - <ins>Desc</ins>: Start drawing at coordinates (`x`, `y`) (typically fingerdown location). Doesn't draw anything. 
+  - <ins>Desc</ins>: 
+    Start drawing at coordinates (`x`, `y`) (typically fingerdown location). Doesn't draw anything. 
   - <ins>Pre</ins>:
-  - <ins>Post</ins>: Drawing start is set to (x, y).
-  - <ins>Notes</ins>: Nothing is drawn by this function. (x, y) are typically the fingerdown coordinates.
+  - <ins>Post</ins>: 
+    Drawing start is set to (x, y).
+  - <ins>Notes</ins>: 
+    Nothing is drawn by this function. (x, y) are typically the fingerdown coordinates.
 
 - `bool draw(const float x, const float y, Toolbox& tb, bool drawing)`
   - *Desc*: Draw a stroke from the last position to (x, y), with strokewidth controlled by `drawing` (`true`->`tb.drawing_width`, `false`->`tb.erasing_width`).