Fix typos related to ErrTaskDoesNotExist error (#20118)
Fixes: f2a3abc683
("Move migrating repository from frontend to backend (#6200)")
This commit is contained in:
parent
48ef12b27c
commit
d789d3646c
1 changed files with 2 additions and 2 deletions
|
@ -156,14 +156,14 @@ type ErrTaskDoesNotExist struct {
|
|||
Type structs.TaskType
|
||||
}
|
||||
|
||||
// IsErrTaskDoesNotExist checks if an error is a ErrTaskIsNotExist.
|
||||
// IsErrTaskDoesNotExist checks if an error is a ErrTaskDoesNotExist.
|
||||
func IsErrTaskDoesNotExist(err error) bool {
|
||||
_, ok := err.(ErrTaskDoesNotExist)
|
||||
return ok
|
||||
}
|
||||
|
||||
func (err ErrTaskDoesNotExist) Error() string {
|
||||
return fmt.Sprintf("task is not exist [id: %d, repo_id: %d, type: %d]",
|
||||
return fmt.Sprintf("task does not exist [id: %d, repo_id: %d, type: %d]",
|
||||
err.ID, err.RepoID, err.Type)
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue