fixed typo in version mismatch error

This commit is contained in:
Maxwell Talbot
2020-08-17 10:21:03 +01:00
parent 58e4bca218
commit 396c50bd21

View File

@ -11,6 +11,6 @@ class RiveUnsupportedVersionException implements Exception {
@override
String toString() {
return 'File contains version $fileMajorVersion.$fileMinorVersion. '
'This runtime can only support $fileMajorVersion.$fileMinorVersion';
'This runtime can only support $majorVersion.$minorVersion';
}
}