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
/// Read some lines of a file
#[derive(Debug, StructOpt)]
struct Cli {
/// Input file to read
file: String,
/// Number of lines to read
#[structopt(short = "n")]
num: usize,
}
Suggested Improvement
file should be PathBuf or OsString.
The text was updated successfully, but these errors were encountered:
Content Bug Report
Page(s) Affected
https://www.rust-lang.org/what/cli
What needs to be fixed?
The example that currently reads like this:
Suggested Improvement
file
should bePathBuf
orOsString
.The text was updated successfully, but these errors were encountered: