diff options
Diffstat (limited to '')
-rw-r--r-- | job/job.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,5 +10,5 @@ type Job struct { } func (job Job) String() string { - return fmt.Sprintf("Name: \"%s\", Timestamp: \"%d\", Success: \"%t\"", job.Name, job.Timestamp, job.Success) + return fmt.Sprintf("Job { Name: \"%s\", Timestamp: \"%d\", Success: \"%t\" }", job.Name, job.Timestamp, job.Success) } |