1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 17:59:10 +03:00

Rename the property.

This commit is contained in:
Rob Rix 2015-10-02 16:38:21 -04:00
parent 48c2112124
commit 089bd51fb3

View File

@ -2,7 +2,7 @@
public enum Patch<A> {
case Replace(Fix<A>?, Fix<A>?)
public var replace: (before: Fix<A>?, after: Fix<A>?) {
public var state: (before: Fix<A>?, after: Fix<A>?) {
switch self {
case let .Replace(a, b):
return (a, b)