@@ -115,7 +115,7 @@ def send(message: Message, dry_run: bool = False, app: Optional[App] = None) ->
115115 """Sends the given message via Firebase Cloud Messaging (FCM).
116116
117117 If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
118- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
118+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
119119
120120 Args:
121121 message: An instance of ``messaging.Message``.
@@ -139,7 +139,7 @@ def send_each(
139139 """Sends each message in the given list via Firebase Cloud Messaging.
140140
141141 If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
142- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
142+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
143143
144144 Args:
145145 messages: A list of ``messaging.Message`` instances.
@@ -163,7 +163,7 @@ async def send_each_async(
163163 """Sends each message in the given list asynchronously via Firebase Cloud Messaging.
164164
165165 If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
166- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
166+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
167167
168168 Args:
169169 messages: A list of ``messaging.Message`` instances.
@@ -188,7 +188,7 @@ async def send_each_for_multicast_async(
188188 (FCM).
189189
190190 If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
191- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
191+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
192192
193193 Args:
194194 multicast_message: An instance of ``messaging.MulticastMessage``.
@@ -219,7 +219,7 @@ def send_each_for_multicast(multicast_message, dry_run=False, app=None):
219219 """Sends the given mutlicast message to each token via Firebase Cloud Messaging (FCM).
220220
221221 If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
222- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
222+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
223223
224224 Args:
225225 multicast_message: An instance of ``messaging.MulticastMessage``.
@@ -250,7 +250,7 @@ def send_all(messages, dry_run=False, app=None):
250250 """Sends the given list of messages via Firebase Cloud Messaging as a single batch.
251251
252252 If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
253- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
253+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
254254
255255 Args:
256256 messages: A list of ``messaging.Message`` instances.
@@ -273,7 +273,7 @@ def send_multicast(multicast_message, dry_run=False, app=None):
273273 """Sends the given mutlicast message to all tokens via Firebase Cloud Messaging (FCM).
274274
275275 If the ``dry_run`` mode is enabled, the message will not be actually delivered to the
276- recipients. Instead FCM performs all the usual validations, and emulates the send operation.
276+ recipients. Instead, FCM performs all the usual validations and emulates the send operation.
277277
278278 Args:
279279 multicast_message: An instance of ``messaging.MulticastMessage``.
0 commit comments