Skip to content

Commit 8225f27

Browse files
committed
Minor polishes before CR.
1 parent ccb44e2 commit 8225f27

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

WooCommerce/Classes/Notifications/PushNotificationsManager.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ final class PushNotificationsManager: PushNotesManager {
4545
/// Mutable reference to `inactiveNotifications`
4646
private let inactiveNotificationsSubject = PassthroughSubject<PushNotification, Never>()
4747

48-
/// An observable that emits values when a Local Notification is received.
48+
/// An observable that emits values when a local notification is received.
4949
///
5050
var localNotificationResponses: AnyPublisher<UNNotificationResponse, Never> {
5151
localNotificationResponsesSubject.eraseToAnyPublisher()
5252
}
5353

54-
/// Mutable reference to `localNotificationResponses`
54+
/// Mutable reference to `localNotificationResponses`.
5555
private let localNotificationResponsesSubject = PassthroughSubject<UNNotificationResponse, Never>()
5656

5757
/// Returns the current Application's State

WooCommerce/Classes/ServiceLocator/PushNotesManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protocol PushNotesManager {
2020
///
2121
var inactiveNotifications: AnyPublisher<PushNotification, Never> { get }
2222

23-
/// An observable that emits values when a Local Notification response is received.
23+
/// An observable that emits values when a local notification response is received.
2424
///
2525
var localNotificationResponses: AnyPublisher<UNNotificationResponse, Never> { get }
2626

WooCommerce/WooCommerceTests/Notifications/PushNotificationsManagerTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import Combine
22
import Experiments
33
import XCTest
4-
//import UserNotifications
54
import Yosemite
65
@testable import WooCommerce
76

0 commit comments

Comments
 (0)