Skip to content

Commit 39b3a0c

Browse files
authored
Merge pull request #41 from tonyarnold/fix/swift-3.1-beta-2-warnings
Fix “method should not be declared public because its parameter uses an internal type” warnings
2 parents 84b517f + 709ee17 commit 39b3a0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/NestedExtendedDiff.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public struct NestedExtendedDiff: DiffProtocol {
2424
public let elements: [Element]
2525
}
2626

27-
typealias NestedElementEqualityChecker<T: Collection> = (T.Iterator.Element.Iterator.Element, T.Iterator.Element.Iterator.Element) -> Bool where T.Iterator.Element: Collection
27+
public typealias NestedElementEqualityChecker<T: Collection> = (T.Iterator.Element.Iterator.Element, T.Iterator.Element.Iterator.Element) -> Bool where T.Iterator.Element: Collection
2828

2929
public extension Collection
3030
where Iterator.Element: Collection {

0 commit comments

Comments
 (0)