Fix typos

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Jack Ye 2025-04-04 11:27:10 +08:00 committed by GitHub
parent 8df1e6a0ce
commit 3283adce59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -491,9 +491,9 @@ namespace Flow.Launcher.Infrastructure
#region Notification
public static bool IsNotificationSupport()
public static bool IsNotificationSupported()
{
// Notification only supported Windows 10 19041+
// Notifications only supported on Windows 10 19041+
return RuntimeInformation.IsOSPlatform(OSPlatform.Windows) &&
Environment.OSVersion.Version.Build >= 19041;
}