Fix typo in error message

This commit is contained in:
Victor Mignot 2023-06-07 23:43:38 +02:00
parent 933900f7d2
commit c2954dda9c
No known key found for this signature in database
GPG key ID: FFE4EF056FB5E0D0

View file

@ -111,7 +111,7 @@ impl<'a> EmbedSelector<'a> {
Ok(self.wait_selector_end().await?) Ok(self.wait_selector_end().await?)
} }
Err(_e) => Err(CommandExecutionError::DiscordAPICallError( Err(_e) => Err(CommandExecutionError::DiscordAPICallError(
"Failed to edit original interaction responnse".to_string(), "Failed to edit original interaction response".to_string(),
)), )),
} }
} }