From f78acf21a61146f6835d27455789336473b07c09 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Thu, 6 Jan 2022 15:37:53 -0500 Subject: [PATCH] pr feedback --- docs/tutorials/go-built-in.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/go-built-in.md b/docs/tutorials/go-built-in.md index a55642f54..320f542d1 100644 --- a/docs/tutorials/go-built-in.md +++ b/docs/tutorials/go-built-in.md @@ -193,8 +193,8 @@ When Tendermint Core receives a new transaction, Tendermint asks the application if the transaction is acceptable. In our new application, let's implement some basic validation for the transactions it will receive. -For our KV store application, a transaction is a string like `key=value`, giving -a key and value to write to the store. +For our KV store application, a transaction is a string with the form `key=value`, +indicating a key and value to write to the store. Add the following helper method to `app.go`: