Skip to content

Commit

Permalink
Merge pull request #37 from ksmandersen/fix/swift-4-warning
Browse files Browse the repository at this point in the history
Fixed Swift 4 warning
  • Loading branch information
BrettRToomey authored Sep 13, 2017
2 parents 92bcca5 + 80ca8bc commit 838827f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Jobs.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protocol Performable {

/// A scheduled, performable task.
public class Job: Performable {
public typealias Action = (Void) throws -> Void
public typealias Action = () throws -> Void
public typealias ErrorCallback = (Error) -> RecoverStrategy

/// The job's name.
Expand Down

0 comments on commit 838827f

Please sign in to comment.