From 2947799c32bfef0b2348dc66e4ab58aeff9d0358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Oberd=C3=B6rfer?= Date: Wed, 16 Jul 2025 22:22:36 +0200 Subject: [PATCH] Fix protocol name typo --- QLog/QLog/RootViewCoordinator.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QLog/QLog/RootViewCoordinator.swift b/QLog/QLog/RootViewCoordinator.swift index a0b6565..70bf518 100644 --- a/QLog/QLog/RootViewCoordinator.swift +++ b/QLog/QLog/RootViewCoordinator.swift @@ -9,10 +9,10 @@ import Foundation import UIKit -protocol RootViewCoontrollerProvider: AnyObject { +protocol RootViewControllerProvider: AnyObject { var rootViewController: UIViewController { get } } -typealias RootViewCoordinator = Coordinator & RootViewCoontrollerProvider +typealias RootViewCoordinator = Coordinator & RootViewControllerProvider