src/Pure/goal.ML
changeset 67721 5348bea4accd
parent 65458 cf504b7a7aa7
child 68025 7fb7a6366a40
--- a/src/Pure/goal.ML	Sun Feb 25 12:59:08 2018 +0100
+++ b/src/Pure/goal.ML	Sun Feb 25 15:44:46 2018 +0100
@@ -60,21 +60,21 @@
 
 (*
   -------- (init)
-  C ==> #C
+  C \<Longrightarrow> #C
 *)
 fun init C = Thm.instantiate ([], [((("A", 0), propT), C)]) Drule.protectI;
 
 (*
-  A1 ==> ... ==> An ==> C
+  A1 \<Longrightarrow> ... \<Longrightarrow> An \<Longrightarrow> C
   ------------------------ (protect n)
-  A1 ==> ... ==> An ==> #C
+  A1 \<Longrightarrow> ... \<Longrightarrow> An \<Longrightarrow> #C
 *)
 fun protect n th = Drule.comp_no_flatten (th, n) 1 Drule.protectI;
 
 (*
-  A ==> ... ==> #C
+  A \<Longrightarrow> ... \<Longrightarrow> #C
   ---------------- (conclude)
-  A ==> ... ==> C
+  A \<Longrightarrow> ... \<Longrightarrow> C
 *)
 fun conclude th = Drule.comp_no_flatten (th, Thm.nprems_of th) 1 Drule.protectD;