From 78d40e09017c0b80e14eabeb7a289b0073f56404 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Mon, 9 Jun 2014 17:37:59 +0200 Subject: [PATCH] Fixed nesting of HTML elements in documentation. The code element may only contain inline but the pre element is block. --- VisualC.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/VisualC.html b/VisualC.html index 0c53b948790b3..89035d6776448 100644 --- a/VisualC.html +++ b/VisualC.html @@ -110,8 +110,8 @@

Now create the basic body of your project. The body of your program should take - the following form: -

+			the following form:
+			

 #include "SDL.h"
 
 int main( int argc, char* argv[] )
@@ -119,8 +119,7 @@ 

// Body of the program goes here. return 0; } -

- +

That's it!