Skip to content

Commit

Permalink
chore: fix typos (#920)
Browse files Browse the repository at this point in the history
Signed-off-by: riskrose <[email protected]>
  • Loading branch information
riskrose authored Jun 10, 2024
1 parent a74ffb0 commit 6989843
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion x/streamer/client/cli/query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (s *QueryTestSuite) TestQueriesNeverAlterState() {
&types.StreamsResponse{},
},
{
"Query module to distibute coins",
"Query module to distribute coins",
"/dymensionxyz.dymension.streamer.Query/ModuleToDistributeCoins",
&types.ModuleToDistributeCoinsRequest{},
&types.ModuleToDistributeCoinsResponse{},
Expand Down
2 changes: 1 addition & 1 deletion x/streamer/client/cli/tx_replace_distribution.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
func NewCmdSubmitReplaceStreamDistributionProposal() *cobra.Command {
cmd := &cobra.Command{
Use: "replace-stream-distribution-proposal streamID gaugeIds weights [flags]",
Short: "Submit a full replacement to the distribution records of an exisiting stream",
Short: "Submit a full replacement to the distribution records of an existing stream",
Args: cobra.ExactArgs(3),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
Expand Down
2 changes: 1 addition & 1 deletion x/streamer/client/cli/tx_terminate_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
func NewCmdSubmitTerminateStreamProposal() *cobra.Command {
cmd := &cobra.Command{
Use: "terminate-stream-proposal streamID [flags]",
Short: "proposal to terminate an exisiting stream",
Short: "proposal to terminate an existing stream",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
Expand Down
2 changes: 1 addition & 1 deletion x/streamer/client/cli/tx_update_distribution.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
func NewCmdSubmitUpdateStreamDistributionProposal() *cobra.Command {
cmd := &cobra.Command{
Use: "update-stream-distribution-proposal streamID gaugeIds weights [flags]",
Short: "Submit an update to the distribution records of an exisiting stream",
Short: "Submit an update to the distribution records of an existing stream",
Args: cobra.ExactArgs(3),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientTxContext(cmd)
Expand Down

0 comments on commit 6989843

Please sign in to comment.