Skip to content

Commit

Permalink
Removing println
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-petruk committed Jun 8, 2024
1 parent b87e944 commit d4b2c38
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/templates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ pub fn write_template(filename: &str, content: &str) -> Result<()> {

pub fn edit(initial_value: &str, filename: &str) -> Result<()> {
if let Some(new_content) = editor::edit(filename, initial_value)? {
println!("NEW");
write_template(filename, &new_content)?;
} else {
println!("No changes were made during editing.");
Expand Down

0 comments on commit d4b2c38

Please sign in to comment.