add comment to error type

This commit is contained in:
cubixle
2021-08-04 23:55:05 +01:00
parent 3e5c1d0e26
commit 1276047fb9

View File

@@ -3,5 +3,7 @@ package l1
import "fmt" import "fmt"
var ( var (
// ErrNoTarget is the error used when no target has been set
// in the Runner.
ErrNoTarget = fmt.Errorf("no target has been set") ErrNoTarget = fmt.Errorf("no target has been set")
) )