Fix upper_case_acronyms lint

This commit is contained in:
Dustin J. Mitchell 2021-03-28 18:40:45 -04:00
parent c42cc3bdcb
commit fdeadfd981
10 changed files with 78 additions and 78 deletions

View file

@ -2,5 +2,5 @@ use thiserror::Error;
#[derive(Debug, Error, Eq, PartialEq, Clone)]
pub enum Error {
#[error("Task Database Error: {}", _0)]
DBError(String),
DbError(String),
}