File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,21 +30,21 @@ public func evaluateLayoutExpressions(_ expressions: [ExpressionProtocol]) -> [N
3030/// The effect of this function is the same as setting the `isActive` property of the constraint to
3131/// `true`.
3232public func activateLayoutExpression( _ expression: DistinctExpressionType ) {
33- evaluateLayoutExpression ( expression) . isActive = true
33+ evaluateLayoutExpression ( expression) . isActive = true
3434}
3535
3636/// Evaluates a layout expression and activates its constraints.
3737///
3838/// The effect of this function is the same as setting the `isActive` property of the constraints to
3939/// `true`.
4040public func activateLayoutExpression( _ expression: ExpressionProtocol ) {
41- evaluateLayoutExpression ( expression) . activateConstraints ( )
41+ evaluateLayoutExpression ( expression) . activateConstraints ( )
4242}
4343
4444/// Evaluates multiple layout expressions and activates their constraints.
4545///
4646/// The effect of this function is the same as setting the `isActive` property of each constraint
4747/// to `true`.
4848public func activateLayoutExpressions( _ expressions: [ ExpressionProtocol ] ) {
49- evaluateLayoutExpressions ( expressions) . activateConstraints ( )
49+ evaluateLayoutExpressions ( expressions) . activateConstraints ( )
5050}
You can’t perform that action at this time.
0 commit comments