Revert to original minimal Inform lexer.
[ibg.git] / chapters / 07.rst
index 521fa7c3210f52bed913abaf78f2fe30604e3d6e..4a8031b369df988dd1ba045d6ded4218b7557950 100644 (file)
@@ -2,7 +2,7 @@
  William Tell: the early years
 ===============================
 
-.. highlight:: inform6
+.. highlight:: inform
 
 .. epigraph::
 
@@ -644,7 +644,7 @@ all of them loop statements that we don't encounter in this guide).
       if (condition) {
          statement;
          statement;
-         ...
+         ...
       }
 
    but other designers have their own preferences, including::
@@ -652,20 +652,20 @@ all of them loop statements that we don't encounter in this guide).
       if (condition) {
          statement;
          statement;
-         ...
+         ...
          }
 
       if (condition)
       {   statement;
          statement;
-         ...
+         ...
       }
 
       if (condition)
          {
          statement;
          statement;
-         ...
+         ...
          }
 
 Although we've not yet needed to use it, now would probably be a good time