Skip to content

Commit

Permalink
fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
cgsdev0 committed May 3, 2024
1 parent 5b05f3a commit f194855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func init() {
var runCmd = &cobra.Command{
Use: "run UUID",
Args: cobra.MatchAll(cobra.RangeArgs(1, 10)),
Short: "Run an lesson without submitting",
Short: "Run a lesson without submitting",
PreRun: compose(requireUpdated, requireAuth),
RunE: submissionHandler,
}
2 changes: 1 addition & 1 deletion cmd/submit.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func init() {
var submitCmd = &cobra.Command{
Use: "submit UUID",
Args: cobra.MatchAll(cobra.RangeArgs(1, 10)),
Short: "Submit an lesson",
Short: "Submit a lesson",
PreRun: compose(requireUpdated, requireAuth),
RunE: submissionHandler,
}
Expand Down

0 comments on commit f194855

Please sign in to comment.