From 4703ad50e72decdfa425ded40e48d5367d19de4a Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Mon, 27 Jul 2015 20:56:56 -0400
Subject: [PATCH] fix code example

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

diff --git a/README.md b/README.md
index feff6c6a6..0cbe78746 100644
--- a/README.md
+++ b/README.md
@@ -299,8 +299,8 @@ For some of Pd's internals like array visualization, the message length may
 vary. For these _special_ cases, the following functions allow the developer
 to iteratively build up a message to send to the GUI.
 
-```
-gui_start_vmess(const char *msg, const char *format, ...); // send a message to the gui without terminating it
+```c
+gui_start_vmess(const char *msg, const char *format, ...);
 gui_start_array(); // start an array
 gui_f(t_float float); // floating point array element (t_float)
 gui_i(int int); // integer array element (int)
-- 
GitLab