🐛 fix(ui): correct grammar errors in eol command and trash messages

- fix typo in `Delete` variant description from "immediatly" to "immediately"
- correct grammar in trash log message from "move to trash" to "moved to trash"
This commit is contained in:
Jeremiah Russell
2025-10-07 16:04:09 +01:00
committed by Jeremiah Russell
parent ed00ab698e
commit 7a1a8f6a1a
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ pub enum EolCmd {
#[default]
/// Move the message to the trash
Trash,
/// Delete the message immediatly
/// Delete the message immediately
Delete,
}

View File

@@ -67,7 +67,7 @@ impl Trash {
.map_err(Box::new)?;
for m in self.message_list.messages() {
log::info!("Message with subject `{}` move to trash.", m.subject());
log::info!("Message with subject `{}` moved to trash.", m.subject());
}
Ok(())