Browse Source

Fixed missing public access control on greaterThanEqualTo

Robert Payne 11 years ago
parent
commit
b3740ffb0d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Snap/Constraint.swift

+ 1 - 1
Snap/Constraint.swift

@@ -134,7 +134,7 @@ public class Constraint {
     public func greaterThanOrEqualTo(other: ConstraintItem) -> Constraint {
         return constrainTo(other, relation: .GreaterThanOrEqualTo)
     }
-    func greaterThanOrEqualTo(other: View) -> Constraint {
+    public func greaterThanOrEqualTo(other: View) -> Constraint {
         return constrainTo(other, relation: .GreaterThanOrEqualTo)
     }
     #if os(iOS)