]> matita.cs.unibo.it Git - helm.git/commitdiff
...
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 8 Apr 2008 16:59:26 +0000 (16:59 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Tue, 8 Apr 2008 16:59:26 +0000 (16:59 +0000)
helm/software/components/ng_kernel/nCicPp.ml

index 454cc9b586b6b4e806a79e06c7638e18f6b2592f..2c46fef6f18a75874ff5486c71f2e107a96528ec 100644 (file)
@@ -37,7 +37,8 @@ let trivial_pp_term ~context ~subst ~metasenv =
 
 let ppobj = function
   | (u,_,metasenv,subst,NCic.Fixpoint (b, fl, _)) -> 
-       "let rec "^NUri.string_of_uri u^"\n"^
+       NUri.string_of_uri u^"\n"^
+       "let rec "^
        String.concat "\nand "
         (List.map (fun (_,name,n,ty,bo) ->
           name ^ " on " ^ string_of_int n ^ " : " ^ 
@@ -52,6 +53,3 @@ let ppobj = function
           ppterm ~metasenv ~subst ~context:[] ty ^ ":=\n"^
           ppterm ~metasenv ~subst ~context:[] bo ^ "\n"
 ;;
-
-
-