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

[in_app_purchases] Fixed typo 'manuelly' for 'manually' #2902

Merged
merged 1 commit into from
Aug 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/in_app_purchase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/in_app_purchase/ios/Classes/InAppPurchasePlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ - (void)addPayment:(FlutterMethodCall *)call result:(FlutterResult)result {
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]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ - (void)testAddPaymentWithSameProductIDWillFail {
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];
}];
Expand Down
2 changes: 1 addition & 1 deletion packages/in_app_purchase/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down