We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f67446f commit e8852cbCopy full SHA for e8852cb
src/can/mod.rs
@@ -86,7 +86,7 @@ pub enum ErrorKind {
86
87
/// An ACK error shall be detected by a transmitter whenever it does not
88
/// monitor a dominant bit during the ACK slot.
89
- Ack,
+ Acknowledge,
90
91
/// A different error occurred. The original error may contain more information.
92
Other,
@@ -112,7 +112,7 @@ impl core::fmt::Display for ErrorKind {
112
f,
113
"A fixed-form bit field contains one or more illegal bits"
114
),
115
- Self::Ack => write!(f, "Transmitted frame was not acknowledged"),
+ Self::Acknowledge => write!(f, "Transmitted frame was not acknowledged"),
116
Self::Other => write!(
117
118
"A different error occurred. The original error may contain more information"
0 commit comments