chore: style

This commit is contained in:
Gabriel Ebner 2022-06-30 13:21:26 +02:00 committed by Sebastian Ullrich
parent bec0bbc351
commit ddf77a8c6d

View file

@ -862,7 +862,7 @@ class Quote (α : Type) (k : SyntaxNodeKind := `term) where
export Quote (quote)
instance [Quote α k] [CoeHTCT (TSyntax k) (TSyntax [k'])]: Quote α k' := ⟨fun a => quote (k := k) a⟩
instance [Quote α k] [CoeHTCT (TSyntax k) (TSyntax [k'])] : Quote α k' := ⟨fun a => quote (k := k) a⟩
instance : Quote Term := ⟨id⟩
instance : Quote Bool := ⟨fun | true => mkCIdent `Bool.true | false => mkCIdent `Bool.false⟩