From 5cfcd9f7bbb2adee3775228a2d911664a7748077 Mon Sep 17 00:00:00 2001 From: sapuri Date: Tue, 18 Jul 2023 15:38:20 +0900 Subject: [PATCH] fix(messaging): correct comment --- messaging/messaging_batch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/messaging_batch.go b/messaging/messaging_batch.go index 536227d8..c8ed63fa 100644 --- a/messaging/messaging_batch.go +++ b/messaging/messaging_batch.go @@ -116,7 +116,7 @@ func (c *fcmClient) SendEachDryRun(ctx context.Context, messages []*Message) (*B return c.sendEachInBatch(ctx, messages, true) } -// SendMulticast sends the given multicast message to all the FCM registration tokens specified. +// SendEachForMulticast sends the given multicast message to all the FCM registration tokens specified. // // The tokens array in MulticastMessage may contain up to 500 tokens. SendMulticast uses the // SendEach() function to send the given message to all the target recipients. The