Name type parameters consistently
This commit is contained in:
parent
98916b0d2b
commit
7200b8acee
1 changed files with 2 additions and 2 deletions
|
|
@ -151,8 +151,8 @@ pub trait CommandExt: Sized {
|
|||
|
||||
impl<C> CommandExt for C {}
|
||||
|
||||
pub struct Commands<B = (), E = euphoxide::Error> {
|
||||
commands: Vec<Box<dyn Command<B, E> + Sync + Send>>,
|
||||
pub struct Commands<S = (), E = euphoxide::Error> {
|
||||
commands: Vec<Box<dyn Command<S, E> + Sync + Send>>,
|
||||
}
|
||||
|
||||
impl<S, E> Commands<S, E> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue