rename "Tag" highlight to "Constant"

This commit is contained in:
rhiannon morris 2023-11-05 14:30:40 +01:00
parent 2f8a2d2cd2
commit 3b9a339e5e
5 changed files with 29 additions and 29 deletions

View file

@ -287,7 +287,7 @@ prettyEnum : {opts : _} -> List String -> Eff Pretty (Doc opts)
prettyEnum cases =
tightBraces =<<
fillSeparateTight !commaD <$>
traverse (hl Tag . Doc.text . quoteTag) cases
traverse (hl Constant . Doc.text . quoteTag) cases
private
prettyCaseRet : {opts : _} ->