Skip to content

Commit

Permalink
Fix rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kellerkindt committed Jan 16, 2024
1 parent 52715f9 commit e4a7c11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ const ARG_CONVERSION_TARGET: [&str; 5] = [

pub const CONVERSION_TARGET_RUST: &str = "rust";
pub const CONVERSION_TARGET_PROTO: &str = "proto";
pub const CONVERSION_TARGET_POSSIBLE_VALUES: [&str; 2] = [
CONVERSION_TARGET_RUST,
CONVERSION_TARGET_PROTO,
];
pub const CONVERSION_TARGET_POSSIBLE_VALUES: [&str; 2] =
[CONVERSION_TARGET_RUST, CONVERSION_TARGET_PROTO];

#[derive(Debug)]
pub struct Parameters {
Expand Down
2 changes: 1 addition & 1 deletion src/io/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
//! ```
pub mod per;
pub mod protobuf;
pub mod protobuf;

0 comments on commit e4a7c11

Please sign in to comment.