Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 6dcd775

Browse files
committed
fixed typo
1 parent 881552e commit 6dcd775

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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
@@ -145,7 +145,7 @@ - (void)testAddPaymentWithSameProductIDWillFail {
145145
XCTAssertEqualObjects(
146146
error.message,
147147
@"There is a pending transaction for the same product identifier. Please "
148-
@"either wait for it to be finished or finish it manuelly using "
148+
@"either wait for it to be finished or finish it manually using "
149149
@"`completePurchase` to avoid edge cases.");
150150
[expectation fulfill];
151151
}];

0 commit comments

Comments
 (0)