From 396c50bd21dbfb5d162c47409c2308d89e0c7689 Mon Sep 17 00:00:00 2001 From: Maxwell Talbot Date: Mon, 17 Aug 2020 10:21:03 +0100 Subject: [PATCH] fixed typo in version mismatch error --- .../runtime/exceptions/rive_unsupported_version_exception.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/rive_core/runtime/exceptions/rive_unsupported_version_exception.dart b/lib/src/rive_core/runtime/exceptions/rive_unsupported_version_exception.dart index 9ebde2b..52f6c7d 100644 --- a/lib/src/rive_core/runtime/exceptions/rive_unsupported_version_exception.dart +++ b/lib/src/rive_core/runtime/exceptions/rive_unsupported_version_exception.dart @@ -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'; } }