Skip to content

Commit 51b6833

Browse files
committed
Remove caps on error messages
1 parent dff1e57 commit 51b6833

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

alpm/src/alpm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub struct ReleaseError;
3939

4040
impl fmt::Display for ReleaseError {
4141
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
42-
f.write_str("Failed to release alpm")
42+
f.write_str("failed to release alpm")
4343
}
4444
}
4545

alpm/src/signing.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub struct SignatureDecodeError;
1414

1515
impl fmt::Display for SignatureDecodeError {
1616
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
17-
f.write_str("Failed to decode signature")
17+
f.write_str("failed to decode signature")
1818
}
1919
}
2020

alpm/src/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub struct ChecksumError;
88

99
impl fmt::Display for ChecksumError {
1010
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
11-
f.write_str("Failed to compute checksum")
11+
f.write_str("failed to compute checksum")
1212
}
1313
}
1414

0 commit comments

Comments
 (0)