Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions command.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
)

const (
helpBufferSize = 1024 // helpBufferSize is sufficient to hold most command --help text.
versionBufferSize = 256 // versionBufferSize is sufficient to hold all the --version text.
helpBufferSize = 2048 // helpBufferSize is sufficient to hold most command --help text.
versionBufferSize = 256 // versionBufferSize is sufficient to hold a full --version text.
defaultVersion = "dev" // defaultVersion is the version shown in --version when the user has not provided one.
defaultShort = "A placeholder for something cool" // defaultShort is the default value for cli.Short.
)
Expand Down
Loading