Fix a couple typos.

This commit is contained in:
Brent Simmons
2025-04-28 08:46:03 -07:00
parent d4f9c25df4
commit 6247d72a5b

View File

@@ -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
}