From b6b9268b239b77eae880a00e5bd6e1c87b49cced Mon Sep 17 00:00:00 2001 From: Mauro <34335419+Velin92@users.noreply.github.com> Date: Thu, 27 Jul 2023 15:41:09 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> --- ElementX/Sources/Application/AppSettings.swift | 2 +- NSE/Sources/Other/NSESettings.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ElementX/Sources/Application/AppSettings.swift b/ElementX/Sources/Application/AppSettings.swift index 3898f3bd69..6e252f36a4 100644 --- a/ElementX/Sources/Application/AppSettings.swift +++ b/ElementX/Sources/Application/AppSettings.swift @@ -190,7 +190,7 @@ final class AppSettings { @UserPreference(key: UserDefaultsKeys.pusherProfileTag, storageType: .userDefaults(store)) var pusherProfileTag: String? - /// Alows notifications to he filtered based on the push context of the room + /// Allows notifications to be filtered based on the push context of the room @UserPreference(key: SharedUserDefaultsKeys.filterNotificationsByPushRulesEnabled, defaultValue: false, storageType: .userDefaults(store)) var filterNotificationsByPushRulesEnabled diff --git a/NSE/Sources/Other/NSESettings.swift b/NSE/Sources/Other/NSESettings.swift index 37e037aa56..c0ad21fc9d 100644 --- a/NSE/Sources/Other/NSESettings.swift +++ b/NSE/Sources/Other/NSESettings.swift @@ -22,7 +22,7 @@ final class NSESettings { /// UserDefaults to be used on reads and writes. private static var store: UserDefaults! = UserDefaults(suiteName: suiteName) - /// Alows notifications to he filtered based on the push context of the room + /// Allows notifications to be filtered based on the push context of the room @UserPreference(key: SharedUserDefaultsKeys.filterNotificationsByPushRulesEnabled, defaultValue: false, storageType: .userDefaults(store)) var filterNotificationsByPushRulesEnabled }