Skip to content

Conversation

@woofyzhao
Copy link

The quickreplace example from 2nd edition book

Ok(v) => v,
Err(e) => {
eprintln!("{} failed to write to file '{}': {:?}",
"Error:".red().bold(), args.filename, e);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"args.filename" should be "args.output".

Ok(v) => v,
Err(e) => {
eprintln!("{} failed to write to file '{}': {:?}",
"Error:".red().bold(), args.filename, e);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"Error:".red().bold(), args.filename, e);
"Error:".red().bold(), args.output, e);

@joebowbeer
Copy link

Fixes #10

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants