labuladong commented on code in PR #17455:
URL: https://github.com/apache/pulsar/pull/17455#discussion_r963242808


##########
site2/docs/client-libraries-go.md:
##########
@@ -846,43 +868,43 @@ ctx := context.Background()
 
 // create producer
 producer, err := client.CreateProducer(pulsar.ProducerOptions{
-       Topic:           topic,
-       DisableBatching: true,
+    Topic:           topic,
+    DisableBatching: true,
 })
 if err != nil {
-       log.Fatal(err)
+    log.Fatal(err)
 }
 defer producer.Close()
 
 // send 10 messages
-msgIDs := [10]MessageID{}
+msgIDs := [10]pulsar.MessageID{}
 for i := 0; i < 10; i++ {
-       msgID, err := producer.Send(ctx, &pulsar.ProducerMessage{
-               Payload: []byte(fmt.Sprintf("hello-%d", i)),
-       })
-       assert.NoError(t, err)
-       assert.NotNil(t, msgID)
-       msgIDs[i] = msgID
+    msgID, _ := producer.Send(ctx, &pulsar.ProducerMessage{

Review Comment:
   Got it. I will replace the parameter details with links. See 
[6298411](https://github.com/apache/pulsar/pull/17455/commits/629841176313a1f0a4ee790bea24027565fd68d6).



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to