We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7a31a2 commit 78f1448Copy full SHA for 78f1448
internal/base/base.go
@@ -28,7 +28,7 @@ func (c *Command) Name() string {
28
}
29
30
func (c *Command) Usage() {
31
- fmt.Printf("usage: %s %s\n", CmdName, c.UsageLine)
+ fmt.Printf("usage: %s %s\n\n", CmdName, c.UsageLine)
32
fmt.Printf("Run '%s help %s' for details.\n", CmdName, c.Name())
33
Exit()
34
internal/question/question.go
@@ -9,7 +9,7 @@ import (
9
10
var CmdQuestion = &base.Command{
11
Run: runQuestion,
12
- UsageLine: "question (QuestionId)",
+ UsageLine: "question <QuestionId>",
13
Short: "build problem solution file",
14
Long: "build problem's description,solution file.",
15
0 commit comments