Diffstat (limited to 'src/build.rs')
| -rw-r--r-- | src/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.rs b/src/build.rs index 51404a4..372eac8 100644 --- a/src/build.rs +++ b/src/build.rs @@ -7,7 +7,7 @@ use crate::{ }; /// A buildable type. -pub trait Build<'ctx, M: 'ctx, E: Effect>: Sized + Send + Sync { +pub trait Build<'ctx, M, E: Effect>: Sized + Send + Sync { /// The builder that can be used to build a value of `Self`. type Builder: Builder<'ctx, E, Value = Self>; } |