fix(library/general_notation): mark \tr as left associative
This commit is contained in:
parent
3aec70b92c
commit
5a553603d1
2 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ reserve infix `≈`:50
|
||||||
reserve infix `∼`:50
|
reserve infix `∼`:50
|
||||||
|
|
||||||
reserve postfix `⁻¹`:100
|
reserve postfix `⁻¹`:100
|
||||||
reserve infixr `⬝`:75
|
reserve infixl `⬝`:75
|
||||||
reserve infixr `▸`:75
|
reserve infixr `▸`:75
|
||||||
|
|
||||||
-- ### types and type constructors
|
-- ### types and type constructors
|
||||||
|
|
|
@ -44,7 +44,7 @@ calc_trans eq.trans
|
||||||
|
|
||||||
namespace eq_ops
|
namespace eq_ops
|
||||||
postfix `⁻¹` := eq.symm
|
postfix `⁻¹` := eq.symm
|
||||||
infixr `⬝` := eq.trans
|
reserve infixr `⬝`:75 infixr `⬝` := eq.trans
|
||||||
infixr `▸` := eq.subst
|
infixr `▸` := eq.subst
|
||||||
end eq_ops
|
end eq_ops
|
||||||
open eq_ops
|
open eq_ops
|
||||||
|
|
Loading…
Reference in a new issue