diff options
author | Rohan Hasabe <[email protected]> | 2024-10-13 22:10:38 -0400 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-10-15 08:51:53 +0200 |
commit | 6b5e117a1213eecf1320aad292a0979c67f5179d (patch) | |
tree | e7cc77979ec165879f0afbfe728a206e14fc60f8 /commands/mod.go | |
parent | 4985be1a4af34dd835e7882605e429cd5ffb1912 (diff) | |
download | hugo-6b5e117a1213eecf1320aad292a0979c67f5179d.tar.gz hugo-6b5e117a1213eecf1320aad292a0979c67f5179d.zip |
commands: Use consistent style when describing subcommands
Closes #12897
Change-Id: Ib27a4a7b540d45243e6252db769d4b9fb7447718
Signed-off-by: Rohan Hasabe <[email protected]>
Diffstat (limited to 'commands/mod.go')
-rw-r--r-- | commands/mod.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/mod.go b/commands/mod.go index a9c8c459d..dda7840cc 100644 --- a/commands/mod.go +++ b/commands/mod.go @@ -328,7 +328,7 @@ func (c *modCommands) Run(ctx context.Context, cd *simplecobra.Commandeer, args func (c *modCommands) Init(cd *simplecobra.Commandeer) error { cmd := cd.CobraCommand - cmd.Short = "Various Hugo Modules helpers." + cmd.Short = "Manage modules" cmd.Long = `Various helpers to help manage the modules in your project's dependency graph. Most operations here requires a Go version installed on your system (>= Go 1.12) and the relevant VCS client (typically Git). This is not needed if you only operate on modules inside /themes or if you have vendored them via "hugo mod vendor". |