From 739e60e3093665b80616b0671e64d4e345ab2228 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Sat, 7 May 2022 10:40:07 -0400 Subject: [PATCH] Fix comment grammar Signed-off-by: Thane Thomson --- internal/state/execution.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/state/execution.go b/internal/state/execution.go index 9bf4d6bea..fbbe96021 100644 --- a/internal/state/execution.go +++ b/internal/state/execution.go @@ -422,7 +422,7 @@ func buildLastCommitInfo(block *types.Block, store Store, initialHeight int64) a func buildLastExtendedCommitInfo(ec *types.ExtendedCommit, store Store, initialHeight int64) abci.ExtendedCommitInfo { // We assume the current height is ec.Height + 1. if ec.Height < initialHeight { - // There is no extended commit for heights below the initial height. + // There are no extended commits for heights below the initial height. return abci.ExtendedCommitInfo{} }