Skip to content

Commit

Permalink
Merge pull request #30 from Template-Coq/templatemonad-prop
Browse files Browse the repository at this point in the history
Move TemplateMonad from Prop to Type
  • Loading branch information
mattam82 authored May 2, 2018
2 parents 2d02d18 + 04ad1e0 commit a81bd81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ clean: Makefile.coq Makefile.coqplugin Makefile.coqchecker
$(MAKE) -f Makefile.coq clean
$(MAKE) -f Makefile.coqplugin clean
$(MAKE) -f Makefile.coqchecker clean
rm -rf theories/Extraction.glob theories/Extraction.vo theories/TypingPlugin.glob theories/TypingPlugin.vo
git checkout html/coqdoc.css

mrproper: clean
Expand Down
2 changes: 1 addition & 1 deletion theories/Ast.v
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ Inductive global_reference :=

(** *** The TemplateMonad type *)

Inductive TemplateMonad : Type -> Prop :=
Inductive TemplateMonad : Type -> Type :=
(* Monadic operations *)
| tmReturn : forall {A:Type}, A -> TemplateMonad A
| tmBind : forall {A B : Type}, TemplateMonad A -> (A -> TemplateMonad B)
Expand Down

0 comments on commit a81bd81

Please sign in to comment.