fixes from review

This commit is contained in:
Ethan Buchman
2017-09-04 18:27:04 -04:00
parent f0f1ebe013
commit 9deb647303
5 changed files with 46 additions and 58 deletions

View File

@ -205,7 +205,7 @@ func Block(heightPtr *int) (*ctypes.ResultBlock, error) {
return &ctypes.ResultBlock{blockMeta, block}, nil
}
// Get block commit at a given height. If the height is left out, it
// Get block commit at a given height.
// If no height is provided, it will fetch the commit for the latest block.
//
// ```shell

View File

@ -7,7 +7,7 @@ import (
"github.com/tendermint/tendermint/types"
)
// Get the validator set at a give block height.
// Get the validator set at the given block height.
// If no height is provided, it will fetch the current validator set.
//
// ```shell