From 4ffe2ed38b238ff410e70654cbe38883f7533d3f Mon Sep 17 00:00:00 2001 From: Tavi <94469945+tavi-vi@users.noreply.github.com> Date: Mon, 31 Jan 2022 18:43:01 -0500 Subject: [PATCH] Fix formatting error (#1078) Fixed error that caused `` to disappear from C `#include` directive --- doc/site/embedding/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/site/embedding/index.markdown b/doc/site/embedding/index.markdown index 3c448295..ccb7ae2f 100644 --- a/doc/site/embedding/index.markdown +++ b/doc/site/embedding/index.markdown @@ -208,7 +208,7 @@ You can find this file in the [example](https://github.com/wren-lang/wren/blob/m
 //For more details, visit https://wren.io/embedding/
 
-#include 
+#include <stdio.h>
 #include "wren.h"
 
 static void writeFn(WrenVM* vm, const char* text)