Revert to original minimal Inform lexer.
[ibg.git] / chapters / 02.rst
index 32f06a1cb578f72bc4ea2016eee9abe55e015b99..d8590cc17d1f206932add7b15a8dc6588a0d0ba0 100644 (file)
@@ -36,7 +36,7 @@ in which you initially write the game doesn't bear much resemblance to the
 text which the interpreter ultimately displays.  For example, the "William
 Tell" game, in the form that we wrote it, starts like this:
 
-.. code-block:: inform6
+.. code-block:: inform
 
     !============================================================================
     Constant Story "William Tell";
@@ -53,7 +53,7 @@ Tell" game, in the form that we wrote it, starts like this:
     Class   Room
       has   light;
 
-    ...
+    ...
 
 You will never need to look at it in the form produced by the compiler::