diff --git a/Sources/ParseSwift/Types/ParsePush.swift b/Sources/ParseSwift/Types/ParsePush.swift index b1bd831b4..ac83f4620 100644 --- a/Sources/ParseSwift/Types/ParsePush.swift +++ b/Sources/ParseSwift/Types/ParsePush.swift @@ -15,14 +15,15 @@ import Foundation exposed to the public. */ public struct ParsePush: ParseTypeable { + /** The query that determines what installations should receive the notification. - - warning: Cannot send a notification with this valuel and `channels` both set. + - warning: Cannot send a notification with this value and `channels` both set. */ public var `where`: QueryWhere? /** An Array of channels to push to. - - warning: Cannot send a notification with this valuel and `where` both set. + - warning: Cannot send a notification with this value and `where` both set. */ public var channels: Set? /// The payload to send. @@ -249,4 +250,5 @@ public extension ParsePush { let query = ParsePushStatus.query("objectId" == statusId) query.first(options: options, completion: completion) } + }