From 4a2724bcc42cbe3e032c383483c737516f1958a4 Mon Sep 17 00:00:00 2001 From: Nate Weaver Date: Tue, 17 Sep 2019 13:27:11 -0500 Subject: [PATCH] Fix comment capitalization --- Mac/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/AppDelegate.swift b/Mac/AppDelegate.swift index 804b79d1f..9679cfc2f 100644 --- a/Mac/AppDelegate.swift +++ b/Mac/AppDelegate.swift @@ -533,7 +533,7 @@ extension AppDelegate { let newValue = !AppDefaults.webInspectorEnabled AppDefaults.webInspectorEnabled = newValue // An attached inspector can display incorrectly on certain setups (like mine); default to displaying in a separate window, - // And reset to a separate window when the preference is toggled off and on again in case the inspector is accidentally reattached. + // and reset to a separate window when the preference is toggled off and on again in case the inspector is accidentally reattached. UserDefaults.standard.set(false, forKey: "__WebInspectorPageGroupLevel1__.WebKit2InspectorStartsAttached") NotificationCenter.default.post(name: .WebInspectorEnabledDidChange, object: newValue) }