Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #5 from mac-cain13/feature/swift-2.2
Browse files Browse the repository at this point in the history
Update to Swift 2.2
  • Loading branch information
mac-cain13 committed Mar 22, 2016
2 parents dbfa02d + d29951d commit 0c7f875
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Library/Core/ReuseIdentifierProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Foundation
/// Reuse identifier protocol
public protocol ReuseIdentifierType: IdentifierType {
/// Type of this reuseable
typealias ReusableType
associatedtype ReusableType
}

/// Reuse identifier
Expand Down
2 changes: 1 addition & 1 deletion Library/Core/StoryboardResource.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ public protocol StoryboardResourceType {
public protocol StoryboardResourceWithInitialControllerType: StoryboardResourceType {

/// Type of the inital controller
typealias InitialController
associatedtype InitialController
}
6 changes: 3 additions & 3 deletions Library/Core/StoryboardSegueIdentifierProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import Foundation
/// Segue identifier protocol
public protocol StoryboardSegueIdentifierType: IdentifierType {
/// Type of the segue itself
typealias SegueType
associatedtype SegueType

/// Type of the source view controller
typealias SourceType
associatedtype SourceType

/// Type of the destination view controller
typealias DestinationType
associatedtype DestinationType
}

/// Segue identifier
Expand Down
2 changes: 1 addition & 1 deletion Library/Core/StoryboardViewControllerResource.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Foundation

public protocol StoryboardViewControllerResourceType: IdentifierType {
typealias ViewControllerType
associatedtype ViewControllerType
}

public struct StoryboardViewControllerResource<ViewController>: StoryboardViewControllerResourceType {
Expand Down

0 comments on commit 0c7f875

Please sign in to comment.