Skip to content

Commit

Permalink
lint error for paypal start
Browse files Browse the repository at this point in the history
  • Loading branch information
KunJeongPark committed Oct 22, 2024
1 parent b7c84d9 commit 24ff08c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/PayPalWebPayments/PayPalWebCheckoutClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class PayPalWebCheckoutClient: NSObject {
/// - completion: A completion block that is invoked when the request is completed. If the request succeeds,
/// a `PayPalWebCheckoutResult` with `orderID` and `payerID` are returned and `error` will be `nil`;
/// if it fails, `PayPalWebCheckoutResult will be `nil` and `error` will describe the failure
public func start(request: PayPalWebCheckoutRequest, completion: @escaping(PayPalWebCheckoutResult?, Error?) -> Void) {
public func start(request: PayPalWebCheckoutRequest, completion: @escaping (PayPalWebCheckoutResult?, Error?) -> Void) {
analyticsService = AnalyticsService(coreConfig: config, orderID: request.orderID)
analyticsService?.sendEvent("paypal-web-payments:started")

Expand Down

0 comments on commit 24ff08c

Please sign in to comment.