From 9571f986b8393eed5dbc56a7dcb876a62ffbe2ca Mon Sep 17 00:00:00 2001 From: Jaewook <31857308+woookDev@users.noreply.github.com> Date: Mon, 24 Jan 2022 01:08:37 +0900 Subject: [PATCH] Fix typo in Interactor comments (callend -> called) (#492) --- ios/RIBs/Classes/Interactor.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/RIBs/Classes/Interactor.swift b/ios/RIBs/Classes/Interactor.swift index c8733c57c..d80ded2c9 100644 --- a/ios/RIBs/Classes/Interactor.swift +++ b/ios/RIBs/Classes/Interactor.swift @@ -126,7 +126,7 @@ open class Interactor: Interactable { isActiveSubject.onNext(false) } - /// Callend when the `Interactor` will resign the active state. + /// Called when the `Interactor` will resign the active state. /// /// This method is driven by the detachment of this interactor's owner router. Subclasses should override this /// method to cleanup any resources and states of the `Interactor`. The default implementation does nothing.