tuned msgs;
authorwenzelm
Fri, 30 Jan 1998 11:34:06 +0100
changeset 4590 9f8f931e0089
parent 4589 543e867efe40
child 4591 f88e466c43fa
tuned msgs;
src/Pure/pure_thy.ML
--- a/src/Pure/pure_thy.ML	Fri Jan 30 11:33:01 1998 +0100
+++ b/src/Pure/pure_thy.ML	Fri Jan 30 11:34:06 1998 +0100
@@ -106,13 +106,13 @@
 
 fun get_thms thy name =
   (case all_local_thms (thy :: Theory.ancestors_of thy) name of
-    None => raise THEORY ("Theorems " ^ quote name ^ " not stored in theory", [thy])
+    None => raise THEORY ("Unknown theorem(s) " ^ quote name, [thy])
   | Some thms => thms);
 
 fun get_thm thy name =
   (case get_thms thy name of
     [thm] => thm
-  | _ => raise THEORY ("Singleton list of theorems expected " ^ quote name, [thy]));
+  | _ => raise THEORY ("Single theorem expected " ^ quote name, [thy]));
 
 
 (* thms_of *)