NEWS
changeset 18507 9b8b33098ced
parent 18506 96260fb11449
child 18536 ab3f32f86847
--- a/NEWS	Fri Dec 23 15:18:13 2005 +0100
+++ b/NEWS	Fri Dec 23 15:21:05 2005 +0100
@@ -169,13 +169,13 @@
 needs to be structured carefully as a two-level conjunction, using
 lists of propositions separated by 'and':
 
-lemma
-  shows "a : A ==> P1 a"
-        "a : A ==> P2 a"
-    and "b : B ==> Q1 b"
-        "b : B ==> Q2 b"
-        "b : B ==> Q3 b"
-proof (induct set: A B)
+  lemma
+    shows "a : A ==> P1 a"
+          "a : A ==> P2 a"
+      and "b : B ==> Q1 b"
+          "b : B ==> Q2 b"
+          "b : B ==> Q3 b"
+  proof (induct set: A B)
 
 * Provers/induct: support coinduction as well.  See
 src/HOL/Library/Coinductive_List.thy for various examples.