Browse Source

Remove unneeded closure ornamentation

Elvis Nuñez 9 years ago
parent
commit
b61982d0f9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -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)
         }