]> matita.cs.unibo.it Git - helm.git/commitdiff
Pretty-printing of definitions fixed.
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Mon, 7 Apr 2008 22:04:17 +0000 (22:04 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Mon, 7 Apr 2008 22:04:17 +0000 (22:04 +0000)
helm/software/components/ng_kernel/nCicPp.ml

index b89d44aca4512f49cc65c9d1c6f990e59ae534f6..454cc9b586b6b4e806a79e06c7638e18f6b2592f 100644 (file)
@@ -43,12 +43,12 @@ let ppobj = function
           name ^ " on " ^ string_of_int n ^ " : " ^ 
           ppterm ~metasenv ~subst ~context:[] ty ^ " :=\n"^
           ppterm ~metasenv ~subst ~context:[] bo) fl)
-  | (u,_,_,_,NCic.Inductive (b, _,tl, _)) -> "inductive"
+  | (u,_,_,_,NCic.Inductive (b, _,tyl, _)) -> "inductive"
   | (u,_,metasenv,subst,NCic.Constant (_,name,None,ty, _)) -> 
         "axiom " ^ name ^ " : " ^ 
           ppterm ~metasenv ~subst ~context:[] ty ^ "\n"
   | (u,_,metasenv,subst,NCic.Constant (_,name,Some bo,ty, _)) ->
-        "axiom " ^ name ^ " : " ^ 
+        "definition " ^ name ^ " : " ^ 
           ppterm ~metasenv ~subst ~context:[] ty ^ ":=\n"^
           ppterm ~metasenv ~subst ~context:[] bo ^ "\n"
 ;;