Fix error type of EExpr::SingleQuote

This commit is contained in:
Richard Feldman 2021-08-20 08:08:17 -04:00
parent dc2016dc0d
commit 71eb6132f4

View file

@ -419,7 +419,7 @@ pub enum EExpr<'a> {
InParens(EInParens<'a>, Row, Col),
Record(ERecord<'a>, Row, Col),
Str(EString<'a>, Row, Col),
SingleQuote(char, Row, Col),
SingleQuote(EString<'a>, Row, Col),
Number(Number, Row, Col),
List(List<'a>, Row, Col),