From ac0bdf3f22c167871ab200e26ac2b58e1a37a908 Mon Sep 17 00:00:00 2001 From: maurok Date: Wed, 17 May 2017 18:51:11 -0300 Subject: [PATCH] # Fixing typo in C# README file --- CSharp/sample-payments/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CSharp/sample-payments/README.md b/CSharp/sample-payments/README.md index 37219b5407..35c97dbc2c 100644 --- a/CSharp/sample-payments/README.md +++ b/CSharp/sample-payments/README.md @@ -66,7 +66,7 @@ private static Task BuildBuyCardAsync(string cartId, CatalogItem ite } ```` -In addition, if you take a look at the payload you can see it is actually a [`PaymentRequest`](PaymentsBot/Dialogs/RootDialog.cs#L61) created and set to the `CardAction` Value` by the [`BuildPaymentRequest`](PaymentsBot/Dialogs/RootDialog.cs#L147) method. All the values set there are used to set up the payment options within Microsoft Wallet services. +In addition, if you take a look at the payload you can see it is actually a [`PaymentRequest`](PaymentsBot/Dialogs/RootDialog.cs#L61) created and set to the `CardAction` `Value` by the [`BuildPaymentRequest`](PaymentsBot/Dialogs/RootDialog.cs#L147) method. All the values set there are used to set up the payment options within Microsoft Wallet services. ````C# private static PaymentRequest BuildPaymentRequest(string cartId, CatalogItem item, MicrosoftPayMethodData methodData)