Fixed typo manuelly for manually (#2902)

diff --git a/packages/in_app_purchase/CHANGELOG.md b/packages/in_app_purchase/CHANGELOG.md
index 3f6bd8e..7e2eb30 100644
--- a/packages/in_app_purchase/CHANGELOG.md
+++ b/packages/in_app_purchase/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.3.4+3
+
+* Fixed typo 'manuelly' for 'manually'.
+
 ## 0.3.4+2
 
 * Update package:e2e reference to use the local version in the flutter/plugins
diff --git a/packages/in_app_purchase/ios/Classes/InAppPurchasePlugin.m b/packages/in_app_purchase/ios/Classes/InAppPurchasePlugin.m
index bfe29f9..06fe74a 100644
--- a/packages/in_app_purchase/ios/Classes/InAppPurchasePlugin.m
+++ b/packages/in_app_purchase/ios/Classes/InAppPurchasePlugin.m
@@ -187,7 +187,7 @@
     result([FlutterError
         errorWithCode:@"storekit_duplicate_product_object"
               message:@"There is a pending transaction for the same product identifier. Please "
-                      @"either wait for it to be finished or finish it manuelly using "
+                      @"either wait for it to be finished or finish it manually using "
                       @"`completePurchase` to avoid edge cases."
 
               details:call.arguments]);
diff --git a/packages/in_app_purchase/ios/Tests/InAppPurchasePluginTest.m b/packages/in_app_purchase/ios/Tests/InAppPurchasePluginTest.m
index 20543a2..f1290b0 100644
--- a/packages/in_app_purchase/ios/Tests/InAppPurchasePluginTest.m
+++ b/packages/in_app_purchase/ios/Tests/InAppPurchasePluginTest.m
@@ -146,7 +146,7 @@
                     XCTAssertEqualObjects(
                         error.message,
                         @"There is a pending transaction for the same product identifier. Please "
-                        @"either wait for it to be finished or finish it manuelly using "
+                        @"either wait for it to be finished or finish it manually using "
                         @"`completePurchase` to avoid edge cases.");
                     [expectation fulfill];
                   }];
diff --git a/packages/in_app_purchase/pubspec.yaml b/packages/in_app_purchase/pubspec.yaml
index 907c8ce..4b50721 100644
--- a/packages/in_app_purchase/pubspec.yaml
+++ b/packages/in_app_purchase/pubspec.yaml
@@ -1,7 +1,7 @@
 name: in_app_purchase
 description: A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store and Google Play.
 homepage: https://github.com/flutter/plugins/tree/master/packages/in_app_purchase
-version: 0.3.4+2
+version: 0.3.4+3
 
 dependencies:
   async: ^2.0.8