Skip to content

Commit e1bc622

Browse files
Tabs not spaces for this proj
1 parent 2ee08ef commit e1bc622

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

LayoutExpressions/Evaluation.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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`.
3232
public 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`.
4040
public 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`.
4848
public func activateLayoutExpressions(_ expressions: [ExpressionProtocol]) {
49-
evaluateLayoutExpressions(expressions).activateConstraints()
49+
evaluateLayoutExpressions(expressions).activateConstraints()
5050
}

0 commit comments

Comments
 (0)