Skip to content

Commit b53fda8

Browse files
authored
Fix Typos (#2038)
1 parent 3ad42b9 commit b53fda8

24 files changed

+25
-25
lines changed

docs/customer_sheet.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ First initialize the customer sheet
132132
ScaffoldMessenger.of(context).showSnackBar(
133133
SnackBar(
134134
content: Text(
135-
'Payment succesfully modified option selected: ${result?.paymentOption?.label}}'),
135+
'Payment successfully modified option selected: ${result?.paymentOption?.label}}'),
136136
),
137137
);
138138
} on Exception catch (e) {

docs/google_pay.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Then add the `startGooglePay` method to your screen.
112112
);
113113
ScaffoldMessenger.of(context).showSnackBar(
114114
const SnackBar(
115-
content: Text('Google Pay payment succesfully completed')),
115+
content: Text('Google Pay payment successfully completed')),
116116
);
117117
} catch (e) {
118118
if (e is StripeException) {
@@ -200,7 +200,7 @@ In the callback generate the correct stripe token and confirm the payment.
200200
);
201201
ScaffoldMessenger.of(context).showSnackBar(
202202
const SnackBar(
203-
content: Text('Google Pay payment succesfully completed')),
203+
content: Text('Google Pay payment successfully completed')),
204204
);
205205
} catch (e) {
206206
ScaffoldMessenger.of(context).showSnackBar(

docs/ideal.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Future<void> _pay(BuildContext context) async{
147147
);
148148
ScaffoldMessenger.of(context).showSnackBar(
149149
SnackBar(
150-
content: Text('Payment succesfully completed'),
150+
content: Text('Payment successfully completed'),
151151
),
152152
);
153153
} on Exception catch (e) {

example/lib/screens/payment_sheet/payment_sheet_deffered_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ class _PaymentSheetScreenState extends State<PaymentSheetDefferedScreen> {
299299
if (context.mounted) {
300300
scaffoldMessenger.showSnackBar(
301301
SnackBar(
302-
content: Text('Payment succesfully completed'),
302+
content: Text('Payment successfully completed'),
303303
),
304304
);
305305
}

example/lib/screens/payment_sheet/payment_sheet_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class _PaymentSheetScreenState extends State<PaymentSheetScreen> {
158158
if (context.mounted) {
159159
scaffoldMessenger.showSnackBar(
160160
SnackBar(
161-
content: Text('Payment succesfully completed'),
161+
content: Text('Payment successfully completed'),
162162
),
163163
);
164164
}

example/lib/screens/payment_sheet/payment_sheet_screen_custom_flow.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class _PaymentSheetScreenState extends State<PaymentSheetScreenWithCustomFlow> {
143143
if (context.mounted) {
144144
scaffoldMessenger.showSnackBar(
145145
SnackBar(
146-
content: Text('Payment succesfully completed'),
146+
content: Text('Payment successfully completed'),
147147
),
148148
);
149149
}

example/lib/screens/regional_payment_methods/affirm_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class AffirmScreen extends StatelessWidget {
4747
if (context.mounted) {
4848
scaffoldMessenger.showSnackBar(
4949
SnackBar(
50-
content: Text('Payment succesfully completed'),
50+
content: Text('Payment successfully completed'),
5151
),
5252
);
5353
}

example/lib/screens/regional_payment_methods/ali_pay_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class AliPayScreen extends StatelessWidget {
4949
if (context.mounted) {
5050
scaffoldMessenger.showSnackBar(
5151
SnackBar(
52-
content: Text('Payment succesfully completed'),
52+
content: Text('Payment successfully completed'),
5353
),
5454
);
5555
}

example/lib/screens/regional_payment_methods/aubecs_debit.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class _AubecsExampleState extends State<AubecsExample> {
109109
if (context.mounted) {
110110
scaffoldMessenger.showSnackBar(
111111
SnackBar(
112-
content: Text('Payment succesfully completed'),
112+
content: Text('Payment successfully completed'),
113113
),
114114
);
115115
}

example/lib/screens/regional_payment_methods/cash_app_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class CashAppScreen extends StatelessWidget {
5050
if (!context.mounted) return;
5151
scaffoldMessenger.showSnackBar(
5252
const SnackBar(
53-
content: Text('Payment succesfully completed'),
53+
content: Text('Payment successfully completed'),
5454
),
5555
);
5656
} on Exception catch (e) {

0 commit comments

Comments
 (0)