1
1
mirror of https://github.com/github/semantic.git synced 2024-12-28 09:21:35 +03:00

Infer a type.

This commit is contained in:
Rob Rix 2015-10-15 11:29:56 -04:00
parent ac84875a4b
commit 8680bb4165

View File

@ -29,7 +29,7 @@ public struct Interpreter<Term: TermType> {
}
public func run(a: Term, _ b: Term) -> Diff {
return recur(a, b) ?? Diff.Replace(a, b)
return recur(a, b) ?? .Replace(a, b)
}
}