Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
alterae committed Nov 18, 2022
1 parent 47a37da commit 4063ebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/site.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ impl Site {
log::debug!("Transforms apply to source '{}'", source.display());

for (target_ext, transform) in &self.config.transforms[ext] {
destination.set_extension(&target_ext);
destination.set_extension(target_ext);

log::debug!(
"Mapping '{}' -> '{}' via {transform}",
Expand Down

0 comments on commit 4063ebd

Please sign in to comment.