Преглед на файлове

Fixed nesting of HTML elements in documentation.

The code element may only contain inline but the pre element is block.
Philipp Wiesemann преди 11 години
родител
ревизия
78d40e0901
променени са 1 файла, в които са добавени 3 реда и са изтрити 4 реда
  1. 3 4
      VisualC.html

+ 3 - 4
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!