Skip to content

Commit 04e2b1b

Browse files
authored
Fix send_all & send_multicast snippet comment to match implementation (#376)
* Fix send_all comment * Update send_multicast comment
1 parent b5f228f commit 04e2b1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

snippets/messaging/cloud_messaging.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def unsubscribe_from_topic():
225225
def send_all():
226226
registration_token = 'YOUR_REGISTRATION_TOKEN'
227227
# [START send_all]
228-
# Create a list containing up to 100 messages.
228+
# Create a list containing up to 500 messages.
229229
messages = [
230230
messaging.Message(
231231
notification=messaging.Notification('Price drop', '5% off all electronics'),
@@ -247,7 +247,7 @@ def send_all():
247247

248248
def send_multicast():
249249
# [START send_multicast]
250-
# Create a list containing up to 100 registration tokens.
250+
# Create a list containing up to 500 registration tokens.
251251
# These registration tokens come from the client FCM SDKs.
252252
registration_tokens = [
253253
'YOUR_REGISTRATION_TOKEN_1',

0 commit comments

Comments
 (0)