style(logging): Ensured that all logs start with lowercase capital and have no trailing punctuation

This commit is contained in:
quexeky
2025-01-19 20:36:38 +11:00
parent 5bf83df9af
commit bc81a4d399
16 changed files with 38 additions and 41 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ pub enum SetupError {
impl Display for SetupError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self {
SetupError::Context => write!(f, "Failed to generate contexts for download"),
SetupError::Context => write!(f, "failed to generate contexts for download"),
}
}
}