Skip to content

Commit 5b2fd4e

Browse files
committed
style/#160: 오타 수정
- authrization → authorization
1 parent 11175ab commit 5b2fd4e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Poppool/PresentationLayer/LoginFeature/LoginFeature/Login/LoginReactor.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class LoginReactor: Reactor {
2121
}
2222

2323
enum Mutation {
24-
case moveToSignUpScene(from: LoginSceneType, authrizationCode: String?)
24+
case moveToSignUpScene(from: LoginSceneType, authorizationCode: String?)
2525
case moveToHomeScene
2626
case moveToBeforeScene
2727
case moveToInquiryScene
@@ -34,7 +34,7 @@ final class LoginReactor: Reactor {
3434
}
3535

3636
enum PresentTarget {
37-
case signUp(isFirstResponder: Bool, authrizationCode: String?)
37+
case signUp(isFirstResponder: Bool, authorizationCode: String?)
3838
case home
3939
case dismiss
4040
case inquiry
@@ -103,10 +103,10 @@ final class LoginReactor: Reactor {
103103
case .showTooltip(let tooltipType):
104104
newState.tooltipType = tooltipType
105105

106-
case .moveToSignUpScene(let loginSceneType, let authrizationCode):
106+
case .moveToSignUpScene(let loginSceneType, let authorizationCode):
107107
newState.present = .signUp(
108108
isFirstResponder: loginSceneType == .main,
109-
authrizationCode: authrizationCode
109+
authorizationCode: authorizationCode
110110
)
111111

112112
case .moveToHomeScene:
@@ -156,7 +156,7 @@ final class LoginReactor: Reactor {
156156
return Observable.just(
157157
.moveToSignUpScene(
158158
from: owner.loginSceneType,
159-
authrizationCode: nil
159+
authorizationCode: nil
160160
)
161161
)
162162
}
@@ -203,7 +203,7 @@ final class LoginReactor: Reactor {
203203
return .just(
204204
.moveToSignUpScene(
205205
from: owner.loginSceneType,
206-
authrizationCode: authCode
206+
authorizationCode: authCode
207207
)
208208
)
209209
}

Poppool/PresentationLayer/LoginFeature/LoginFeature/Login/LoginViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ extension LoginViewController {
9999
.withUnretained(self)
100100
.subscribe { (owner, target) in
101101
switch target! {
102-
case .signUp(let isFirstResponder, let authrizationCode):
102+
case .signUp(let isFirstResponder, let authorizationCode):
103103
@Dependency var factory: SignUpFactory
104104
owner.navigationController?.pushViewController(
105105
factory.make(
106106
isFirstResponder: isFirstResponder,
107-
authorizationCode: authrizationCode
107+
authorizationCode: authorizationCode
108108
),
109109
animated: true
110110
)

Poppool/PresentationLayer/Presentation/PresentationTesting/Factory/SignUpFactoryMock.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public final class SignUpFactoryMock: SignUpFactory {
55

66
public init() { }
77

8-
public func make(isFirstResponder: Bool = false, authrizationCode: String? = nil) -> BaseTabmanController {
8+
public func make(isFirstResponder: Bool = false, authorizationCode: String? = nil) -> BaseTabmanController {
99
return BaseTabmanController()
1010
}
1111
}

0 commit comments

Comments
 (0)