Fix typo in parsing error message

This commit is contained in:
Simon Binder 2020-07-12 17:58:45 +02:00
parent e21163d90a
commit 74caeced85
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class ParsingError implements Exception {
@override
String toString() {
return token.span.message('Error: $message}');
return token.span.message('Error: $message');
}
}