You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rust_src/driver.rs
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,10 @@ use crate::error::Error;
2
2
use clap::Parser;
3
3
use std::env;
4
4
#[derive(Parser,Debug)]
5
-
#[command(version, about = "Compiles input-file.c creating an executable /path/to/input-file using the system gcc", long_about = None)]// Read from `Cargo.toml`
5
+
#[command(version, about = "Compiles /path/to/input-file.c creating an executable /path/to/input-file using the system gcc", long_about = None)]// Read from `Cargo.toml`
0 commit comments