Skip to content

Commit fc03d02

Browse files
MauScheffjorgefspereira
authored andcommitted
Fixed typo manuelly for manually (flutter#2902)
1 parent 0cdac08 commit fc03d02

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

packages/in_app_purchase/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.4+3
2+
3+
* Fixed typo 'manuelly' for 'manually'.
4+
15
## 0.3.4+2
26

37
* Update package:e2e reference to use the local version in the flutter/plugins

packages/in_app_purchase/ios/Classes/InAppPurchasePlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ - (void)addPayment:(FlutterMethodCall *)call result:(FlutterResult)result {
187187
result([FlutterError
188188
errorWithCode:@"storekit_duplicate_product_object"
189189
message:@"There is a pending transaction for the same product identifier. Please "
190-
@"either wait for it to be finished or finish it manuelly using "
190+
@"either wait for it to be finished or finish it manually using "
191191
@"`completePurchase` to avoid edge cases."
192192

193193
details:call.arguments]);

packages/in_app_purchase/ios/Tests/InAppPurchasePluginTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ - (void)testAddPaymentWithSameProductIDWillFail {
146146
XCTAssertEqualObjects(
147147
error.message,
148148
@"There is a pending transaction for the same product identifier. Please "
149-
@"either wait for it to be finished or finish it manuelly using "
149+
@"either wait for it to be finished or finish it manually using "
150150
@"`completePurchase` to avoid edge cases.");
151151
[expectation fulfill];
152152
}];

packages/in_app_purchase/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: in_app_purchase
22
description: A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store and Google Play.
33
homepage: https://github.com/flutter/plugins/tree/master/packages/in_app_purchase
4-
version: 0.3.4+2
4+
version: 0.3.4+3
55

66
dependencies:
77
async: ^2.0.8

0 commit comments

Comments
 (0)