Skip to content

Commit 478e7fe

Browse files
committed
Fix code for Xcode6.1-beta2.
1 parent 8ce8dd6 commit 478e7fe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

SwiftTask/SwiftTask.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public enum TaskState: String, StateType, Printable
2626

2727
public var description: String
2828
{
29-
return self.toRaw()
29+
return self.rawValue
3030
}
3131
}
3232

@@ -47,7 +47,7 @@ public enum TaskEvent: String, StateEventType, Printable
4747

4848
public var description: String
4949
{
50-
return self.toRaw()
50+
return self.rawValue
5151
}
5252
}
5353

Vendor/SwiftState

0 commit comments

Comments
 (0)