Skip to content

Commit

Permalink
fix: Correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
attakei committed Mar 31, 2024
1 parent 5a66b35 commit 674697b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub(crate) fn execute(_args: &Arguments) -> Result<()> {
files.push(f.path.display().to_string());
}
ctx.insert("files", &files);
// Display infomation data.
// Display information data.
println!("{}", Tera::one_off(DISPLAY_TEMPLATE, &ctx, true).unwrap());
Ok(())
}
Expand All @@ -40,7 +40,7 @@ const DISPLAY_TEMPLATE: &'static str = r#"
- Next minor: {{ next_minor }}
- Next patch: {{ next_patch }}
# Relace targets
# Replace targets
{% for f in files -%}
- {{ f|safe }}
Expand Down

0 comments on commit 674697b

Please sign in to comment.