From 459c58463bcf7a7a959c69a972d7bd9daf822c34 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 4 Dec 2015 19:56:17 +0300 Subject: [PATCH] Fix whitespaces --- test/APINotes/blocks.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/APINotes/blocks.swift b/test/APINotes/blocks.swift index ff1d3a1cda104..6779e81c4600a 100644 --- a/test/APINotes/blocks.swift +++ b/test/APINotes/blocks.swift @@ -7,11 +7,11 @@ import UIKit class MyView: UIView { func foo() { - UIView.animateWithDuration( 1, delay: 1, options: UIViewAnimationOptions.LayoutSubviews, - animations:{print("animating")}, - completion: {(finished:Bool)->Void in print("here we are")}); - UIView.animateWithDuration( 1, delay: 1, options: UIViewAnimationOptions.LayoutSubviews, - animations:{print("animating")}, + UIView.animateWithDuration(1, delay: 1, options: UIViewAnimationOptions.LayoutSubviews, + animations: { print("animating") }, + completion: { (finished: Bool) -> Void in print("here we are") }); + UIView.animateWithDuration(1, delay: 1, options: UIViewAnimationOptions.LayoutSubviews, + animations: { print("animating") }, completion: nil); } }