Skip to content

Commit

Permalink
chore: clippy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nikarh committed Sep 9, 2024
1 parent fb260af commit 4673211
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/commands/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub struct Build {
#[command(subcommand)]
cmd: BuildCmd,

/// An alphanumeric string of 9 characters. Used as a fallback in case title_id is not defined in Cargo.toml.
/// An alphanumeric string of 9 characters. Used as a fallback in case `title_id` is not defined in Cargo.toml.
#[arg(long, env="VITA_DEFAULT_TITLE_ID", value_parser = clap::value_parser!(TitleId))]
default_title_id: Option<TitleId>,

Expand All @@ -53,7 +53,7 @@ enum BuildCmd {

#[derive(Args, Debug)]
struct Eboot {
/// Uploads eboot.bin to ux0:app/{title_id}/eboot.bin
/// Uploads eboot.bin to `ux0:app/{title_id}/eboot.bin`
#[arg(long, default_value = "false")]
update: bool,
/// Runs the updated app. If multiple eboot files are updated, only the last one is run.
Expand Down
2 changes: 1 addition & 1 deletion src/commands/logs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub struct Logs {
pub enum LogsCmd {
/// Start a TCP server on 0.0.0.0 and print to stdout all bytes read from the socket
Listen,
/// Reconfigures PrincessLog via vitacompanion.
/// Reconfigures `PrincessLog` via vitacompanion.
/// This will upload the configuration file with the ip address of your host and a port to your Vita.
Configure(Configure),
}
Expand Down

0 comments on commit 4673211

Please sign in to comment.