1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 11:04:00 +03:00

Rename the convenience to avoid the method of the same name.

This commit is contained in:
Rob Rix 2015-10-22 18:54:10 -04:00
parent 6cca28582d
commit 3682aca8a0

View File

@ -43,7 +43,7 @@ final class SESTests: XCTestCase {
private typealias Term = Cofree<String, ()>
private typealias Diff = Free<String, (), Patch<Term>>
private func copy(term: Term) -> Diff {
private func Copy(term: Term) -> Diff {
return hylo(Diff.Introduce(()), Term.unwrap)(term)
}