Skip to content

Commit

Permalink
🛠 Refactor: Rename to notifyOnSystemSheetPanGestureInvoked
Browse files Browse the repository at this point in the history
Summary
* Rename `ModalSheetViewControllerLifecycleNotifier. notifyOnSytemSheetPanGestureInvoked` to `notifyOnSystemSheetPanGestureInvoked`.
  • Loading branch information
dominicstop committed Sep 29, 2024
1 parent 2b19648 commit ab901ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ios/Temp/ModalSheetViewControllerEventsNotifiable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public protocol ModalSheetViewControllerEventsNotifiable: AnyObject {
presentationController: UIPresentationController
);

func notifyOnSytemSheetPanGestureInvoked(
func notifyOnSystemSheetPanGestureInvoked(
sender: UIViewController,
panGesture: UIPanGestureRecognizer,
gesturePoint: CGPoint
Expand Down Expand Up @@ -69,7 +69,7 @@ public extension ModalSheetViewControllerEventsNotifiable {
// no-op
};

func notifyOnSytemSheetPanGestureInvoked(
func notifyOnSystemSheetPanGestureInvoked(
sender: UIViewController,
panGesture: UIPanGestureRecognizer,
gesturePoint: CGPoint
Expand Down
2 changes: 1 addition & 1 deletion ios/Temp/ModalSheetViewControllerLifecycleNotifier.swift
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ open class ModalSheetViewControllerLifecycleNotifier: ViewControllerLifecycleNot
#endif

self.sheetLifecycleEventDelegates.invoke {
$0.notifyOnSytemSheetPanGestureInvoked(
$0.notifyOnSystemSheetPanGestureInvoked(
sender: self,
panGesture: panGesture,
gesturePoint: gesturePoint
Expand Down

0 comments on commit ab901ac

Please sign in to comment.