Skip to content

Commit

Permalink
Fix compilation of handler order
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoconti83 committed Jun 25, 2019
1 parent b0c5746 commit f5625ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions EasyDialogs/window/String+Ask.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ extension String {
return Future {
self.ask(message,
initialValue: initialValue,
handler: InputFuture.handler($0),
secure: secure)
secure: secure,
handler: InputFuture.handler($0))
}
}

Expand Down Expand Up @@ -97,8 +97,8 @@ extension Int {
self.ask(
message,
initialValue: initialValue,
handler: InputFuture.handler($0),
secure: secure
secure: secure,
handler: InputFuture.handler($0)
)
}
}
Expand Down

0 comments on commit f5625ab

Please sign in to comment.