Skip to content

Commit

Permalink
Fix notation
Browse files Browse the repository at this point in the history
  • Loading branch information
mattam82 committed May 17, 2024
1 parent 05651e1 commit 2fab4b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions theories/Init.v
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ Notation "( x , .. , y , z )" :=
(right associativity, at level 0,
format "( x , .. , y , z )") : equations_scope.

Notation " x .1 " := (pr1 x) (at level 3, format "x .1") : equations_scope.
Notation " x .2 " := (pr2 x) (at level 3, format "x .2") : equations_scope.
Notation " x .1 " := (pr1 x) : equations_scope.

Check failure on line 92 in theories/Init.v

View workflow job for this annotation

GitHub Actions / build (dev, 4.09-flambda, hott)

A left-recursive notation must have an explicit level.
Notation " x .2 " := (pr2 x) : equations_scope.

End Sigma_Notations.

Expand Down

0 comments on commit 2fab4b7

Please sign in to comment.