Skip to content

Commit

Permalink
fixes #50
Browse files Browse the repository at this point in the history
  • Loading branch information
affeldt-aist committed Jun 9, 2021
1 parent e5b7ecd commit 43bbaee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hierarchy.v
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ Definition left_zero (f : forall A, M A) :=
Definition right_zero (f : forall A, M A) :=
forall (A B : UU0) (g : M B), g >>= (fun _ => f A) = f A.

Definition left_neutral (r : FId ~> M) :=
Definition left_neutral (r : forall A : UU0, A -> M A) :=
forall (A B : UU0) (a : A) (f : A -> M B), r _ a >>= f = f a.

Definition right_neutral (r : forall A : UU0, A -> M A) :=
Expand Down

0 comments on commit 43bbaee

Please sign in to comment.