diff --git a/patchable/src/lib.rs b/patchable/src/lib.rs index 970f0c5..7e0788b 100644 --- a/patchable/src/lib.rs +++ b/patchable/src/lib.rs @@ -88,7 +88,7 @@ pub use patchable_macro::{Patch, Patchable, patchable_model}; /// assert_eq!(accumulator.accumulated, 15u32); /// ``` /// Declares the associated patch type. -pub trait Patchable: Sized { +pub trait Patchable { /// The type of patch associated with this structure. type Patch; }