diff --git a/src/main.rs b/src/main.rs
@@ -218,7 +218,7 @@ fn render_gallery(pics: Vec<GalleryEntry>) -> ExitCode {
);
let (sender, reciever) = mpsc::channel();
- logln!("Started rendering thumbnails (using {n} threads)", n = num_threads);
+ logln!("Started generating thumbnails (using {n} threads)", n = num_threads);
for pic in &pics {
let sender = sender.clone();
@@ -235,7 +235,7 @@ fn render_gallery(pics: Vec<GalleryEntry>) -> ExitCode {
}
}
- logln!("Done rendering WebP thumbnails!");
+ logln!("Done generating thumbnails!");
// ========================================================================
log!("Rendering index.html...");
@@ -484,7 +484,7 @@ fn render_thumbnail(pic: GalleryEntry) -> bool {
.expect("os should support file modification date");
if thumb_mod_date > img_mod_date {
- warningln!("Skipped rendering the thumbnail for {name:?} (update {path:?} to overwrite)",
+ warningln!("Skipped generating the thumbnail for {name:?} (update {path:?} to overwrite)",
name = pic.file_name, path = pic.path);
return true;
}