From f63ab3171ddbc5208c1a616d23722e1a89a75911 Mon Sep 17 00:00:00 2001 From: Moksh Mahajan Date: Sat, 4 Mar 2023 17:03:53 +0530 Subject: [PATCH] fix: Typo in StateError message string --- packages/shorebird_code_push_api/lib/src/provider.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shorebird_code_push_api/lib/src/provider.dart b/packages/shorebird_code_push_api/lib/src/provider.dart index 3ff5c7996..c5a8cf19d 100644 --- a/packages/shorebird_code_push_api/lib/src/provider.dart +++ b/packages/shorebird_code_push_api/lib/src/provider.dart @@ -10,7 +10,7 @@ extension ProvideExtension on Request { if (value == null) { throw StateError( ''' -request.lookup<$T>() called with a request request that does not contain a $T. +request.lookup<$T>() called with a request that does not contain a $T. ''', ); }