[Result] Remove labels from enum

This commit is contained in:
Kyle Fuller
2014-10-26 17:59:03 +00:00
parent fb30915c6a
commit 771236953f
6 changed files with 18 additions and 18 deletions

View File

@@ -11,7 +11,7 @@ class ErrorNodeError : Error {
class ErrorNode : Node {
func render(context: Context) -> Result {
return .Error(error:ErrorNodeError())
return .Error(ErrorNodeError())
}
}