Skip to content

Commit

Permalink
Fix param order in CommandError message
Browse files Browse the repository at this point in the history
  • Loading branch information
oxc committed Oct 15, 2020
1 parent fc7f55a commit 70117aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub enum Error {
#[source]
source: ::std::io::Error,
},
#[error("Command {:?} returned {:?}.", status, opcode)]
#[error("Command {:?} returned {:?}.", opcode, status)]
CommandError {
opcode: Command,
status: CommandStatus,
Expand Down

0 comments on commit 70117aa

Please sign in to comment.