Skip to content

Commit

Permalink
fix(lint): error strings should not be capitalized
Browse files Browse the repository at this point in the history
  • Loading branch information
isaqueveras committed Mar 12, 2023
1 parent 1c9e110 commit 0060019
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/mailer/sendmail.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,5 @@ func findSendmailPath() (path string, err error) {
}
}

return "", errors.New("Failed to locate a sendmail executable path.")
return "", errors.New("failed to locate a sendmail executable path")
}
6 changes: 3 additions & 3 deletions pkg/query/formatting.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const (
)

var (
errInvalidInput error = errors.New("Invalid input")
errNoneTagFound error = errors.New("No tag found")
errFieldNull error = errors.New("Field null")
errInvalidInput error = errors.New("invalid input")
errNoneTagFound error = errors.New("no tag found")
errFieldNull error = errors.New("field null")
)

// FormatValuesInUp format columns and values ​​for an insert or update query
Expand Down

1 comment on commit 0060019

@vercel
Copy link

@vercel vercel bot commented on 0060019 Mar 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

power-sso – ./

power-sso-git-main-isaqueveras.vercel.app
power-sso.vercel.app
power-sso-isaqueveras.vercel.app

Please sign in to comment.