tracing instead of warning
authorwebertj
Fri, 15 Dec 2006 17:51:07 +0100
changeset 21863 2cfc838297ff
parent 21862 13e9febe3080
child 21864 2ecfd8985982
tracing instead of warning
src/FOL/ex/IffOracle.thy
--- a/src/FOL/ex/IffOracle.thy	Fri Dec 15 00:08:50 2006 +0100
+++ b/src/FOL/ex/IffOracle.thy	Fri Dec 15 17:51:07 2006 +0100
@@ -37,16 +37,16 @@
 ML {* iff_oracle (the_context ()) 10 *}
 ML {* #der (Thm.rep_thm it) *}
 
-text {* These oracle calls had better fail *}
+text {* These oracle calls had better fail. *}
 
 ML {*
   (iff_oracle (the_context ()) 5; error "?")
-    handle Fail _ => warning "Oracle failed, as expected"
+    handle Fail _ => tracing "Oracle failed, as expected"
 *}
 
 ML {*
   (iff_oracle (the_context ()) 1; error "?")
-    handle Fail _ => warning "Oracle failed, as expected"
+    handle Fail _ => tracing "Oracle failed, as expected"
 *}