diff --git a/crates/bin/cairo-execute/src/main.rs b/crates/bin/cairo-execute/src/main.rs index c065d57a1df..c3e6b34cef0 100644 --- a/crates/bin/cairo-execute/src/main.rs +++ b/crates/bin/cairo-execute/src/main.rs @@ -25,7 +25,7 @@ struct Args { /// The Cairo project path to compile and run. path: PathBuf, - /// Whether to only build and into the given path. + /// Whether to only build and save into the given path. #[clap(long)] build_only: Option, diff --git a/crates/bin/cairo-run/src/main.rs b/crates/bin/cairo-run/src/main.rs index 3b70aff8e38..d1b8db7d910 100644 --- a/crates/bin/cairo-run/src/main.rs +++ b/crates/bin/cairo-run/src/main.rs @@ -126,8 +126,8 @@ fn main() -> anyhow::Result<()> { while let Some(item) = format_next_item(&mut felts) { if !first { print!(", "); - first = false; } + first = false; print!("{}", item.quote_if_string()); } println!("].")