fix(library/general_notation): mark \tr as left associative

This commit is contained in:
Leonardo de Moura 2014-10-22 22:12:53 -07:00
parent 3aec70b92c
commit 5a553603d1
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ reserve infix `≈`:50
reserve infix ``:50
reserve postfix `⁻¹`:100
reserve infixr `⬝`:75
reserve infixl `⬝`:75
reserve infixr `▸`:75
-- ### types and type constructors

View file

@ -44,7 +44,7 @@ calc_trans eq.trans
namespace eq_ops
postfix `⁻¹` := eq.symm
infixr `⬝` := eq.trans
reserve infixr `⬝`:75 infixr `⬝` := eq.trans
infixr `▸` := eq.subst
end eq_ops
open eq_ops