File tree 5 files changed +10
-10
lines changed
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ func CopyAction(context *cli.Context) error {
65
65
var CopyCommand = cli.Command {
66
66
Name : "copy" ,
67
67
Aliases : []string {"cp" },
68
- Usage : "copy task file into clipboad " ,
69
- UsageText : "list meta data about of the tests cases in the current task " ,
68
+ Usage : "Copy task file into clipboard " ,
69
+ UsageText : "Copy task file into clipboard " ,
70
70
Action : CopyAction ,
71
71
}
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ func ParseAction(_ *cli.Context) error {
185
185
var ParseCommand = cli.Command {
186
186
Name : "parse" ,
187
187
Aliases : []string {"p" },
188
- Usage : "parse task from navigator" ,
188
+ Usage : "Parse task from navigator" ,
189
189
UsageText : "egor parse" ,
190
190
Action : ParseAction ,
191
191
}
Original file line number Diff line number Diff line change @@ -135,8 +135,8 @@ func PrintCaseAction(context *cli.Context) error {
135
135
var PrintCaseCommand = cli.Command {
136
136
Name : "printcase" ,
137
137
Aliases : []string {"pc" },
138
- Usage : "print input and/or output of a given test case" ,
139
- UsageText : "print input and/or output of a given test case" ,
138
+ Usage : "Print input and/or output of a given test case" ,
139
+ UsageText : "Print input and/or output of a given test case" ,
140
140
Action : PrintCaseAction ,
141
141
Flags : []cli.Flag {
142
142
& cli.BoolFlag {
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ func ShowCasesAction(_ *cli.Context) error {
101
101
var ShowCasesCommand = cli.Command {
102
102
Name : "showcases" ,
103
103
Aliases : []string {"sc" },
104
- Usage : "list meta data about of the tests cases in the current task" ,
104
+ Usage : "list meta data about tests cases in the current task" ,
105
105
UsageText : "egor showcases" ,
106
106
Action : ShowCasesAction ,
107
107
}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const CppTemplate = `
16
16
#include <set>
17
17
#include <map>
18
18
#include <algorithm>
19
- #include <math >
19
+ #include <cmath >
20
20
21
21
using namespace std;
22
22
@@ -32,7 +32,7 @@ import java.io.*;
32
32
* Made by egor https://github.com/chermehdi/egor.
33
33
* {{if .Author }}
34
34
* @author {{ .Author }}
35
- {{end}}
35
+ * {{end}}
36
36
*/
37
37
public class Main {
38
38
@@ -52,9 +52,9 @@ public class Main {
52
52
const PythonTemplate = `
53
53
#
54
54
# Created by egor https://github.com/chermehdi/egor
55
- {{if .Author }}
55
+ # {{if .Author }}
56
56
# @author {{ .Author }}
57
- {{end}}
57
+ # {{end}}
58
58
`
59
59
60
60
func ResolveTemplateByLanguage (lang string ) (string , error ) {
You can’t perform that action at this time.
0 commit comments