From 557b860e7bf1ec6777d70de92c73d4abc395c568 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Thu, 6 Jan 2022 15:36:47 -0500 Subject: [PATCH] pr feedback --- docs/tutorials/go-built-in.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/go-built-in.md b/docs/tutorials/go-built-in.md index 5b3967ff6..a55642f54 100644 --- a/docs/tutorials/go-built-in.md +++ b/docs/tutorials/go-built-in.md @@ -26,7 +26,8 @@ yourself with the syntax. By following along with this guide, you'll create a Tendermint Core application called kvstore, a (very) simple distributed BFT key-value store. -> Note: please use a released version of Tendermint with this guide. The guides will work with the latest version. Please, do not use master. +> Note: please use a released version of Tendermint with this guide. The guides will work with the latest releasetd version. +> Please, do not use master. ## 1.1 Installing Go @@ -183,7 +184,7 @@ func NewKVStoreApplication(db *badger.DB) *KVStoreApplication { } ``` -The `pendingBlock` keeps track of the transactions that update the application's +The `pendingBlock` keeps track of the transactions that will update the application's state when a block is completed. Don't worry about it for now, we'll get to that later. ### 1.3.1 CheckTx