From 6247d72a5bb5bca1f2daec631a15a60692406294 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Mon, 28 Apr 2025 08:46:03 -0700 Subject: [PATCH] Fix a couple typos. --- iOS/SceneCoordinator.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/SceneCoordinator.swift b/iOS/SceneCoordinator.swift index 213305258..259ba1b24 100644 --- a/iOS/SceneCoordinator.swift +++ b/iOS/SceneCoordinator.swift @@ -921,7 +921,7 @@ class SceneCoordinator: NSObject, UndoableCommandRunner { func selectPrevUnread() { // This should never happen, but I don't want to risk throwing us - // into an infinate loop searching for an unread that isn't there. + // into an infinite loop searching for an unread that isn't there. if appDelegate.unreadCount < 1 { return } @@ -942,7 +942,7 @@ class SceneCoordinator: NSObject, UndoableCommandRunner { func selectNextUnread() { // This should never happen, but I don't want to risk throwing us - // into an infinate loop searching for an unread that isn't there. + // into an infinite loop searching for an unread that isn't there. if appDelegate.unreadCount < 1 { return }