Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
torfjelde committed Jul 28, 2023
1 parent 6015e46 commit 456114b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/command_config_checkchanneluptodate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ pub fn run_command_config_checkchanneluptodate(
if value_changed {
eprintln!("Property 'checkchanneluptodate' set to '{}'", value);
} else {
eprintln!("Property 'checkchanneluptodate' is already set to '{}'", value);
eprintln!(
"Property 'checkchanneluptodate' is already set to '{}'",
value
);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/config_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub struct JuliaupConfigSettings {
#[serde(
rename = "ShouldCheckChannelUptodate",
default = "default_should_check_channel_uptodate",
skip_serializing_if = "is_default",
skip_serializing_if = "is_default"
)]
pub should_check_channel_uptodate: bool,
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ use anyhow::Context;
pub mod command_add;
pub mod command_api;
pub mod command_config_backgroundselfupdate;
pub mod command_config_checkchanneluptodate;
pub mod command_config_modifypath;
pub mod command_config_startupselfupdate;
pub mod command_config_symlinks;
pub mod command_config_versionsdbupdate;
pub mod command_config_checkchanneluptodate;
pub mod command_default;
pub mod command_gc;
pub mod command_info;
Expand Down

0 comments on commit 456114b

Please sign in to comment.