From 9d3a4d2a582b91deba3fbb9a507285243567e9fd Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 30 Oct 2023 18:26:44 -0700 Subject: [PATCH] Update macos/Sources/Features/Terminal/TerminalController.swift Co-authored-by: Gregory Anders <8965202+gpanders@users.noreply.github.com> --- macos/Sources/Features/Terminal/TerminalController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/Sources/Features/Terminal/TerminalController.swift b/macos/Sources/Features/Terminal/TerminalController.swift index 039616bb3..4115692f5 100644 --- a/macos/Sources/Features/Terminal/TerminalController.swift +++ b/macos/Sources/Features/Terminal/TerminalController.swift @@ -17,7 +17,7 @@ class TerminalController: NSWindowController, NSWindowDelegate, TerminalViewDele @Published var surfaceTree: Ghostty.SplitNode? = nil { didSet { // If our surface tree becomes nil then it means all our surfaces - // have closed, so we also cloud the window. + // have closed, so we also close the window. if (surfaceTree == nil) { lastSurfaceDidClose() } } }