chore: backtick issue in documentation

This commit is contained in:
Leonardo de Moura 2022-04-02 06:55:23 -07:00
parent e058fe65a9
commit 7f00352d33

View file

@ -169,7 +169,7 @@ theorem Tree.bst_insert_of_bst {t : Tree β} (h : BST t) (key : Nat) (value : β
exact .node h₁ h₂ b₁ b₂
/-|
Now, we define the type `BinTree` using a `Subtype` that states that only trees satisfying the BST invariant are `BinTree`s.
Now, we define the type `BinTree` using a `Subtype` that states that only trees satisfying the BST invariant are `BinTree`\ s.
-/
def BinTree (β : Type u) := { t : Tree β // BST t }