@@ -94,7 +94,7 @@ def send(message, dry_run=False, app=None):
9494 string: A message ID string that uniquely identifies the sent the message.
9595
9696 Raises:
97- ApiCallError: If an error occurs while sending the message to FCM service.
97+ ApiCallError: If an error occurs while sending the message to the FCM service.
9898 ValueError: If the input arguments are invalid.
9999 """
100100 return _get_messaging_service (app ).send (message , dry_run )
@@ -114,7 +114,7 @@ def send_all(messages, dry_run=False, app=None):
114114 BatchResponse: A ``messaging.BatchResponse`` instance.
115115
116116 Raises:
117- ApiCallError: If an error occurs while sending the message to FCM service.
117+ ApiCallError: If an error occurs while sending the message to the FCM service.
118118 ValueError: If the input arguments are invalid.
119119 """
120120 return _get_messaging_service (app ).send_all (messages , dry_run )
@@ -134,7 +134,7 @@ def send_multicast(multicast_message, dry_run=False, app=None):
134134 BatchResponse: A ``messaging.BatchResponse`` instance.
135135
136136 Raises:
137- ApiCallError: If an error occurs while sending the message to FCM service.
137+ ApiCallError: If an error occurs while sending the message to the FCM service.
138138 ValueError: If the input arguments are invalid.
139139 """
140140 if not isinstance (multicast_message , MulticastMessage ):
@@ -285,7 +285,7 @@ def __init__(self, resp, exception):
285285
286286 @property
287287 def message_id (self ):
288- """A message ID string that uniquely identifies the sent the message."""
288+ """A message ID string that uniquely identifies the message."""
289289 return self ._message_id
290290
291291 @property
@@ -295,7 +295,7 @@ def success(self):
295295
296296 @property
297297 def exception (self ):
298- """A ApiCallError if an error occurs while sending the message to FCM service."""
298+ """An ApiCallError if an error occurs while sending the message to the FCM service."""
299299 return self ._exception
300300
301301
0 commit comments