From a9ae70ec1dfe5c9504d76a6c89cd1a138519366a Mon Sep 17 00:00:00 2001
From: Garrett Richards <garrettrichards@gmail.com>
Date: Tue, 2 Feb 2016 00:42:32 -0800
Subject: [PATCH] keyword argument not needed in closure

---
 ZoomTransition/ZoomTransition.swift | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ZoomTransition/ZoomTransition.swift b/ZoomTransition/ZoomTransition.swift
index f551a9f..65f03b3 100644
--- a/ZoomTransition/ZoomTransition.swift
+++ b/ZoomTransition/ZoomTransition.swift
@@ -132,7 +132,7 @@ public class ZoomTransition: UIPercentDrivenInteractiveTransition, UIViewControl
                 self.transitionView?.frame = self.toFrame!
             }
     
-        }) { (Bool finished) -> Void in
+        }) { (finished) -> Void in
             self.transitionView?.removeFromSuperview()
             self.fromViewController?.view.alpha = 1
             self.toView?.hidden = false
@@ -163,7 +163,7 @@ public class ZoomTransition: UIPercentDrivenInteractiveTransition, UIViewControl
             if (self.interactive == false){
                 self.transitionView?.frame = self.toFrame!
             }
-        }) { (Bool finished) -> Void in
+        }) { (finished) -> Void in
             if self.interactive == false {
                 self.zoomOutTransitionComplete()
             }
@@ -257,7 +257,7 @@ public class ZoomTransition: UIPercentDrivenInteractiveTransition, UIViewControl
                 }
                 self.transitionView?.contentMode = self.toView!.contentMode
                 
-            }, completion: { (Bool finished) -> Void in
+            }, completion: { (finished) -> Void in
                 self.zoomOutTransitionComplete()
                 self.interactive = false
             })