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 1a20421 commit 8a13bf1Copy full SHA for 8a13bf1
1 file changed
cmd/list.go
@@ -9,7 +9,7 @@ import (
9
"github.com/exercism/cli/config"
10
)
11
12
-const msgExplainFetch = "In order to fetch a specific assignment, call the fetch command with a specific assignment.\n\nexercism fetch ruby matrix"
+const msgExplainFetch = "In order to fetch a specific assignment, call the fetch command with a specific assignment.\n\nexercism fetch %s %s\n\n"
13
14
// List returns the full list of assignments for a given track.
15
func List(ctx *cli.Context) {
@@ -37,5 +37,6 @@ func List(ctx *cli.Context) {
37
for _, p := range problems {
38
fmt.Printf("%s\n", p)
39
}
40
- fmt.Printf("\n%s\n\n", msgExplainFetch)
+ fmt.Println()
41
+ fmt.Printf(msgExplainFetch, trackID, problems[0])
42
0 commit comments