Skip to content

Commit

Permalink
chore: Typo (#9795)
Browse files Browse the repository at this point in the history
  • Loading branch information
sharma-shray authored Dec 14, 2024
1 parent b68f27b commit 46cbc8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/swc-releaser/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use indexmap::IndexSet;
use petgraph::{prelude::DiGraphMap, Direction};

#[derive(Debug, Parser)]
struct CliArs {
struct CliArgs {
#[clap(long)]
pub dry_run: bool,

Expand All @@ -27,7 +27,7 @@ enum Cmd {
}

fn main() -> Result<()> {
let CliArs { dry_run, cmd } = CliArs::parse();
let CliArgs { dry_run, cmd } = CliArgs::parse();

let workspace_dir = env::var("CARGO_WORKSPACE_DIR")
.map(PathBuf::from)
Expand Down

0 comments on commit 46cbc8a

Please sign in to comment.