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


##########
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:
   Hi @Anonymitaet, I suggest we remove parameter details, and then use 
https://pkg.go.dev/github.com/apache/pulsar-client-go/pulsar instead, when the 
go-client updates, we need to update our documentation again, what do you think 
of this.



-- 
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