Skip to content
This repository has been archived by the owner on Jul 2, 2018. It is now read-only.

Commit

Permalink
[development]: Fixes an issue preventing podspec from linting
Browse files Browse the repository at this point in the history
  • Loading branch information
danthorpe committed Nov 16, 2015
1 parent b40712d commit cc55615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Money/iOS/ApplePay.swift
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public final class PaymentSummaryItemCoder<Cost: MoneyType where Cost.DecimalSto

// MARK: - Apple Pay type extensions

@available(iOSApplicationExtension 9.0, *)
@available(iOS 9.0, iOSApplicationExtension 9.0, *)
internal extension PKPaymentSummaryItemType {

init(paymentSummaryItemType: PaymentSummaryItemType) {
Expand All @@ -186,7 +186,7 @@ internal extension PKPaymentSummaryItem {
self.init()
amount = paymentSummaryItem.amount
label = paymentSummaryItem.label
if #available(iOSApplicationExtension 9.0, *) {
if #available(iOS 9.0, iOSApplicationExtension 9.0, *) {
type = PKPaymentSummaryItemType(paymentSummaryItemType: paymentSummaryItem.type)
}
}
Expand Down

0 comments on commit cc55615

Please sign in to comment.