Merge pull request #10 from rive-app/fixtypo

fixed typo in version mismatch error
This commit is contained in:
Maxwell Talbot
2020-08-18 22:45:41 +01:00
committed by GitHub

View File

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