From 65d2e36a420214bfe54b9db624bb670f78fbb0fd Mon Sep 17 00:00:00 2001 From: aggelossik Date: Mon, 6 Nov 2023 16:19:41 +0200 Subject: [PATCH] docs: Update 01-go-client.md comments broadcasting a transaction to create a post and store the response in txResp --- .../versioned_docs/version-v0.27.2/03-clients/01-go-client.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/versioned_docs/version-v0.27.2/03-clients/01-go-client.md b/docs/versioned_docs/version-v0.27.2/03-clients/01-go-client.md index 6f01677c41..1c6ca746b8 100644 --- a/docs/versioned_docs/version-v0.27.2/03-clients/01-go-client.md +++ b/docs/versioned_docs/version-v0.27.2/03-clients/01-go-client.md @@ -157,7 +157,7 @@ func main() { } // Broadcast a transaction from account `alice` with the message - // to create a post store response in txResp + // to create a post and store the response in txResp txResp, err := client.BroadcastTx(ctx, account, msg) if err != nil { log.Fatal(err) @@ -297,4 +297,4 @@ pagination: Great job! You have successfully completed the process of creating a Go client for your Cosmos SDK blockchain, submitting a transaction, and querying the -chain. \ No newline at end of file +chain.