Commit 78d40e09017c0b80e14eabeb7a289b0073f56404

Philipp Wiesemann 2014-06-09T17:37:59

Fixed nesting of HTML elements in documentation. The code element may only contain inline but the pre element is block.

diff --git a/VisualC.html b/VisualC.html
index 0c53b94..89035d6 100644
--- a/VisualC.html
+++ b/VisualC.html
@@ -110,8 +110,8 @@
 		</H3>
 		<P>
 			Now create the basic body of your project. The body of your program should take 
-			the following form: <CODE>
-				<PRE>
+			the following form:
+			<PRE><CODE>
 #include "SDL.h"
 
 int main( int argc, char* argv[] )
@@ -119,8 +119,7 @@ int main( int argc, char* argv[] )
   // Body of the program goes here.
   return 0;
 }
-</PRE>
-			</CODE>
+			</CODE></PRE>
 		<P></P>
 		<H3>
 			That's it!