Remove unneeded closure ornamentation

This commit is contained in:
Elvis Nuñez 2016-05-12 10:50:57 +02:00
parent 6ca3393fa6
commit b61982d0f9
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class MyViewController: UIViewController {
super.viewDidLoad()
self.view.addSubview(box)
box.snp_makeConstraints { (make) -> Void in
box.snp_makeConstraints { make in
make.width.height.equalTo(50)
make.center.equalTo(self.view)
}