Skip to content

Commit fabaadf

Browse files
committed
Address Dilyn's feedback about making Eq and PartialEq consistent ordering throughout the codebase.
1 parent 2feafc6 commit fabaadf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

esp32-wroom-rp/src/protocol.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ pub(crate) struct NinaProtocolHandler<'a, B, C> {
241241

242242
// TODO: look at Nina Firmware code to understand conditions
243243
// that lead to NinaProtocolVersionMismatch
244-
#[derive(Debug, PartialEq, Eq)]
244+
#[derive(Debug, Eq, PartialEq)]
245245
pub enum ProtocolError {
246246
NinaProtocolVersionMismatch,
247247
CommunicationTimeout,

0 commit comments

Comments
 (0)