fixed broken undelegated type

This commit is contained in:
Jose Quesada 2022-12-28 15:38:13 -06:00
parent 28bb3f81aa
commit 8acbc579e0

View file

@ -27,7 +27,7 @@ pub trait EventDescriptor: Clone {
#[allow(non_camel_case_types)]
pub struct undelegated<Ev: EventDescriptor>(pub Ev);
impl<Ev: EventDescriptor> EventDescriptor for Undelegated<Ev> {
impl<Ev: EventDescriptor> EventDescriptor for undelegated<Ev> {
type EventType = Ev::EventType;
fn name(&self) -> Cow<'static, str> {