diff --git a/api/cosmos/autocli/v1/options.pulsar.go b/api/cosmos/autocli/v1/options.pulsar.go index f6c4ead2080af..a97a51701f77a 100644 --- a/api/cosmos/autocli/v1/options.pulsar.go +++ b/api/cosmos/autocli/v1/options.pulsar.go @@ -4268,9 +4268,9 @@ type ModuleOptions struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - // tx describes the tx command for the module. + // tx describes the tx commands for the module. Tx *ServiceCommandDescriptor `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"` - // query describes the queries command for the module. + // query describes the queries commands for the module. Query *ServiceCommandDescriptor `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"` } diff --git a/proto/cosmos/autocli/v1/options.proto b/proto/cosmos/autocli/v1/options.proto index 3c794f7572cbd..b023490c97093 100644 --- a/proto/cosmos/autocli/v1/options.proto +++ b/proto/cosmos/autocli/v1/options.proto @@ -6,10 +6,10 @@ option go_package = "cosmossdk.io/api/cosmos/base/cli/v1;cliv1"; // ModuleOptions describes the CLI options for a Cosmos SDK module. message ModuleOptions { - // tx describes the tx command for the module. + // tx describes the tx commands for the module. ServiceCommandDescriptor tx = 1; - // query describes the queries command for the module. + // query describes the queries commands for the module. ServiceCommandDescriptor query = 2; }