diff --git a/docs/migration_to_3.0.0.md b/docs/migration_to_3.0.0.md index 52b2cf9b2..72523d5bc 100644 --- a/docs/migration_to_3.0.0.md +++ b/docs/migration_to_3.0.0.md @@ -66,7 +66,6 @@ let env = FunctionEnv::new(&mut store, my_counter); Any type can be passed as the environment: (*Nota bene* the passed type `T` must implement the `Any` trait, that is, any type which contains a non-`'static` reference.) ```rust -#[derive(Clone)] struct Env { counter: i32, }