🐛 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:
committed by
Jeremiah Russell
parent
ed00ab698e
commit
7a1a8f6a1a
@@ -8,7 +8,7 @@ pub enum EolCmd {
|
||||
#[default]
|
||||
/// Move the message to the trash
|
||||
Trash,
|
||||
/// Delete the message immediatly
|
||||
/// Delete the message immediately
|
||||
Delete,
|
||||
}
|
||||
|
||||
|
||||
@@ -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(())
|
||||
|
||||
Reference in New Issue
Block a user