Skip to content

Commit f194855

Browse files
committed
fix grammar
1 parent 5b05f3a commit f194855

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func init() {
1313
var runCmd = &cobra.Command{
1414
Use: "run UUID",
1515
Args: cobra.MatchAll(cobra.RangeArgs(1, 10)),
16-
Short: "Run an lesson without submitting",
16+
Short: "Run a lesson without submitting",
1717
PreRun: compose(requireUpdated, requireAuth),
1818
RunE: submissionHandler,
1919
}

cmd/submit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func init() {
2121
var submitCmd = &cobra.Command{
2222
Use: "submit UUID",
2323
Args: cobra.MatchAll(cobra.RangeArgs(1, 10)),
24-
Short: "Submit an lesson",
24+
Short: "Submit a lesson",
2525
PreRun: compose(requireUpdated, requireAuth),
2626
RunE: submissionHandler,
2727
}

0 commit comments

Comments
 (0)