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 7b284a7 commit 1a4cb6eCopy full SHA for 1a4cb6e
1 file changed
api/problem.go
@@ -17,8 +17,8 @@ type Problem struct {
17
Files map[string]string `json:"files"`
18
}
19
20
-func (p *Problem) String() {
21
- fmt.Sprintf("%s - %s in %s", p.ID, p.Name, p.Language)
+func (p *Problem) String() string {
+ return fmt.Sprintf("%s - %s in %s", p.ID, p.Name, p.Language)
22
23
24
func (p *Problem) ExistsIn(dir string) bool {
0 commit comments