Skip to content

Commit 0fa3ee5

Browse files
committed
Fixed typo in README.
1 parent 1606872 commit 0fa3ee5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
gcm
2-
======
2+
===
33

44
The Android SDK provides a nice convenience library ([com.google.android.gcm.server](http://developer.android.com/reference/com/google/android/gcm/server/package-summary.html)) that greatly simplifies the interaction between Java-based application servers and Google's GCM servers. However, Google has not provided much support for application servers implemented in languages other than Java, specifically those written in the Go programming language. The gcm package helps to fill in this gap, providing a simple interface for sending GCM messages and automatically retrying requests in case of service unavailability.
55

@@ -31,7 +31,7 @@ Here is a quick sample illustrating how to send a message to the GCM server:
3131

3232
func main() {
3333
// Create the message to be sent
34-
regIds := []string{"4","8","15","16","23","32"}
34+
regIds := []string{"4","8","15","16","23","42"}
3535
data := map[string]string{"score": "5x1", "time": "15:10"}
3636
msg := gcm.NewMessage(data, regIds...)
3737

0 commit comments

Comments
 (0)