1
1
mirror of https://github.com/github/semantic.git synced 2024-12-25 07:55:12 +03:00

Missed a rename.

This commit is contained in:
Rob Rix 2015-09-21 16:45:45 -04:00
parent ddc020c774
commit 83e3c8e232

View File

@ -48,7 +48,7 @@ public struct Iso<Here, There> {
}
extension Prism where To : ArrayType {
extension Prism where To : ArrayConvertible {
public func map<A>(transform: Iso<To.Element, A>) -> Prism<From, [A]> {
return Prism<From, [A]>(
forward: { self.forward($0)?.array.map(transform.forward) },