Skip to content

Commit 750a606

Browse files
committed
correct a spelling error
1 parent 03236b7 commit 750a606

32 files changed

+32
-32
lines changed

CustomerProfiles/CreateCustomerProfile.cs

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

7676
var request = new createCustomerProfileRequest{ profile = customerProfile, validationMode = validationModeEnum.none};
7777

78-
var controller = new createCustomerProfileController(request); // instantiate the contoller that will call the service
78+
var controller = new createCustomerProfileController(request); // instantiate the controller that will call the service
7979
controller.Execute();
8080

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

MobileInAppTransactions/CreateAnAcceptTransaction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, D
3939

4040
var request = new createTransactionRequest { transactionRequest = transactionRequest };
4141

42-
// instantiate the contoller that will call the service
42+
// instantiate the controller that will call the service
4343
var controller = new createTransactionController(request);
4444
controller.Execute();
4545

MobileInAppTransactions/CreateAnAndroidPayTransaction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, D
3939

4040
var request = new createTransactionRequest { transactionRequest = transactionRequest };
4141

42-
// instantiate the contoller that will call the service
42+
// instantiate the controller that will call the service
4343
var controller = new createTransactionController(request);
4444
controller.Execute();
4545

MobileInAppTransactions/CreateAnApplePayTransaction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static ANetApiResponse Run(String ApiLoginID, String ApiTransactionKey, D
3939

4040
var request = new createTransactionRequest { transactionRequest = transactionRequest };
4141

42-
// instantiate the contoller that will call the service
42+
// instantiate the controller that will call the service
4343
var controller = new createTransactionController(request);
4444
controller.Execute();
4545

PayPalExpressCheckout/AuthorizationAndCapture.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, d
4242

4343
var request = new createTransactionRequest { transactionRequest = transactionRequest };
4444

45-
// instantiate the contoller that will call the service
45+
// instantiate the controller that will call the service
4646
var controller = new createTransactionController(request);
4747
controller.Execute();
4848

PayPalExpressCheckout/AuthorizationAndCaptureContinued.cs

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

4545
var request = new createTransactionRequest { transactionRequest = transactionRequest };
4646

47-
// instantiate the contoller that will call the service
47+
// instantiate the controller that will call the service
4848
var controller = new createTransactionController(request);
4949
controller.Execute();
5050

PayPalExpressCheckout/AuthorizationOnly.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, d
4242

4343
var request = new createTransactionRequest { transactionRequest = transactionRequest };
4444

45-
// instantiate the contoller that will call the service
45+
// instantiate the controller that will call the service
4646
var controller = new createTransactionController(request);
4747
controller.Execute();
4848

PayPalExpressCheckout/AuthorizationOnlyContinued.cs

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

4545
var request = new createTransactionRequest { transactionRequest = transactionRequest };
4646

47-
// instantiate the contoller that will call the service
47+
// instantiate the controller that will call the service
4848
var controller = new createTransactionController(request);
4949
controller.Execute();
5050

PayPalExpressCheckout/Credit.cs

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

4444
var request = new createTransactionRequest { transactionRequest = transactionRequest };
4545

46-
// instantiate the contoller that will call the service
46+
// instantiate the controller that will call the service
4747
var controller = new createTransactionController(request);
4848
controller.Execute();
4949

PayPalExpressCheckout/GetDetails.cs

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

4444
var request = new createTransactionRequest { transactionRequest = transactionRequest };
4545

46-
// instantiate the contoller that will call the service
46+
// instantiate the controller that will call the service
4747
var controller = new createTransactionController(request);
4848
controller.Execute();
4949

0 commit comments

Comments
 (0)