Skip to content

Commit d828e9f

Browse files
committed
[BOOK-114] fix: convention 수정
1 parent 72b44fe commit d828e9f

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

src/Projects/BKDesign/Sources/Components/Button/BKButtonStyle.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,10 @@ public struct BKButtonColorSet {
112112
}
113113

114114
extension BKButtonColorSet: Equatable {
115-
public static func == (lhs: BKButtonColorSet, rhs: BKButtonColorSet) -> Bool {
115+
public static func == (
116+
lhs: BKButtonColorSet,
117+
rhs: BKButtonColorSet
118+
) -> Bool {
116119
return lhs.normal.isEqual(to: rhs.normal) &&
117120
lhs.pressed.isEqual(to: rhs.pressed) &&
118121
lhs.disabled.isEqual(to: rhs.disabled)

src/Projects/BKDesign/Sources/Extensions/SetNeeds.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ public struct SetNeeds<Value: Equatable> {
1515
private weak var view: UIView?
1616

1717
// 초기화
18-
init(wrappedValue: Value, _ needs: Need...) {
18+
init(
19+
wrappedValue: Value,
20+
_ needs: Need...
21+
) {
1922
self.value = wrappedValue
2023
self.needs = Set(needs)
2124
self.view = nil

0 commit comments

Comments
 (0)