Skip to content

Commit cc3a4dc

Browse files
committed
fix comment
1 parent 98c1970 commit cc3a4dc

35 files changed

+35
-35
lines changed

CustomerProfiles/CreateCustomerProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public static ANetApiResponse Run(string ApiLoginID, string ApiTransactionKey, s
8080

8181
createCustomerProfileResponse response = controller.GetApiResponse(); // get the response from the service (errors contained if any)
8282

83-
//validate
83+
// validate response
8484
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
8585
{
8686
if (response != null && response.messages.message != null)

CustomerProfiles/CreateCustomerProfileFromTransaction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static ANetApiResponse Run(string ApiLoginID, string ApiTransactionKey, s
4242

4343
createCustomerProfileResponse response = controller.GetApiResponse();
4444

45-
//validate
45+
// validate response
4646
if (response != null && response.messages.resultCode == messageTypeEnum.Ok)
4747
{
4848
if (response != null && response.messages.message != null)

MobileInAppTransactions/CreateAnAcceptTransaction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, D
4646
// get the response from the service (errors contained if any)
4747
var response = controller.GetApiResponse();
4848

49-
//validate
49+
// validate response
5050
if (response != null)
5151
{
5252
if (response.messages.resultCode == messageTypeEnum.Ok)

MobileInAppTransactions/CreateAnAndroidPayTransaction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, D
4646
// get the response from the service (errors contained if any)
4747
var response = controller.GetApiResponse();
4848

49-
//validate
49+
// validate response
5050
if (response != null)
5151
{
5252
if (response.messages.resultCode == messageTypeEnum.Ok)

MobileInAppTransactions/CreateAnApplePayTransaction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, D
4646
// get the response from the service (errors contained if any)
4747
var response = controller.GetApiResponse();
4848

49-
//validate
49+
// validate response
5050
if (response != null)
5151
{
5252
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/AuthorizationAndCapture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
4949
// get the response from the service (errors contained if any)
5050
var response = controller.GetApiResponse();
5151

52-
//validate
52+
// validate response
5353
if (response != null)
5454
{
5555
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/AuthorizationAndCaptureContinued.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
5151
// get the response from the service (errors contained if any)
5252
var response = controller.GetApiResponse();
5353

54-
//validate
54+
// validate response
5555
if (response != null)
5656
{
5757
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/AuthorizationOnly.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, d
4949
// get the response from the service (errors contained if any)
5050
var response = controller.GetApiResponse();
5151

52-
//validate
52+
// validate response
5353
if (response != null)
5454
{
5555
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/AuthorizationOnlyContinued.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
5151
// get the response from the service (errors contained if any)
5252
var response = controller.GetApiResponse();
5353

54-
//validate
54+
// validate response
5555
if (response != null)
5656
{
5757
if (response.messages.resultCode == messageTypeEnum.Ok)

PayPalExpressCheckout/Credit.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, s
5050
// get the response from the service (errors contained if any)
5151
var response = controller.GetApiResponse();
5252

53-
//validate
53+
// validate response
5454
if (response != null)
5555
{
5656
if (response.messages.resultCode == messageTypeEnum.Ok)

0 commit comments

Comments
 (0)