From 6c142f37cd18a554fed520959e5bfedc32f04a6e Mon Sep 17 00:00:00 2001 From: William Banfield Date: Mon, 21 Mar 2022 09:51:05 -0400 Subject: [PATCH] language fixups --- spec/abci++/abci++_methods_002_draft.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/abci++/abci++_methods_002_draft.md b/spec/abci++/abci++_methods_002_draft.md index 495ac950a..cd7fb5961 100644 --- a/spec/abci++/abci++_methods_002_draft.md +++ b/spec/abci++/abci++_methods_002_draft.md @@ -864,7 +864,7 @@ enum ProposalStatus { * **Usage**: * Used within the [ProcessProposal](#ProcessProposal) response. - * If `Status` is `UNKNOWN`, a problem happened in the Application. Tendermint assume the application is faulty and crash. + * If `Status` is `UNKNOWN`, a problem happened in the Application. Tendermint will assume the application is faulty and crash. * If `Status` is `ACCEPT`, Tendermint accepts the proposal and will issue a Prevote message for it. * If `Status` is `REJECT`, Tendermint rejects the proposal and will issue a Prevote for `nil` instead. @@ -881,7 +881,7 @@ enum ModifiedTxStatus { * **Usage**: * Used within the [PrepareProposal](#PrepareProposal) response. * If `TxModifiedStatus` is `UNKNOWN`, a problem happened in the Application. Tendermint will assume the application is faulty and crash. - * If `TxModifiedStatus` is `UNMODIFIED`, Tendermint will ignore the contents of the `PrepareProposal` response and use gossip the transactions originally passed to the application during `PrepareProposal`. + * If `TxModifiedStatus` is `UNMODIFIED`, Tendermint will ignore the contents of the `PrepareProposal` response and use the transactions originally passed to the application during `PrepareProposal`. * If `TxModifiedStatus` is `MODIFIED`, Tendermint will update the block proposal using the contents of the `PrepareProposal` response returned by the application. ### VerifyStatus