Skip to content

Commit

Permalink
apply fmt fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
zancas committed Apr 8, 2024
1 parent 8b4fc8b commit 13d3587
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zingolib/src/commands/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ impl fmt::Display for CommandError {
}
InvalidMemo(e) => write!(f, "failed to interpret memo. {}", e),
NonJsonNumberForAmount(e) => write!(f, "Non Number input: {}", e),
SingleArgNotJsonArray(e) => write!(f, "argument cannot be parsed to a json array: {}", e),
SingleArgNotJsonArray(e) => {
write!(f, "argument cannot be parsed to a json array: {}", e)
}
}
}
}

0 comments on commit 13d3587

Please sign in to comment.