src/HOL/TPTP/mash_export.ML
changeset 63692 1bc4bc2c9fd1
parent 61322 44f4ffe2b210
child 64522 b66f8caf86b6
--- a/src/HOL/TPTP/mash_export.ML	Sun Aug 14 12:26:09 2016 +0200
+++ b/src/HOL/TPTP/mash_export.ML	Sun Aug 14 12:26:09 2016 +0200
@@ -310,7 +310,7 @@
         val (name', mepo_suggs) =
           extract_suggestions mepo_line
           ||> (map fst #> weight_facts_steeply)
-        val _ = if name = name' then () else error "Input files out of sync."
+        val _ = if name = name' then () else error "Input files out of sync"
         val mess =
           [(mepo_weight, (mepo_suggs, [])),
            (mash_weight, (mash_suggs, []))]
@@ -322,7 +322,7 @@
     val mepo_lines = Path.explode mepo_file_name |> File.read_lines
   in
     if length mash_lines = length mepo_lines then List.app do_fact (mash_lines ~~ mepo_lines)
-    else warning "Skipped: MaSh file missing or out of sync with MePo file."
+    else warning "Skipped: MaSh file missing or out of sync with MePo file"
   end
 
 end;