diff --git a/src/lib.rs b/src/lib.rs index e10244b..0baf01e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -420,12 +420,12 @@ use quote::ToTokens; /// } /// /// #[rstest] -/// fn resolve_by_default(mut fx: impl Iterator) { +/// fn resolve_by_default(mut fx: impl Iterator) { /// assert_eq!((42, -42), fx.next().unwrap()) /// } /// /// #[rstest] -/// fn resolve_partial(#[with(42.0)] mut fx: impl Iterator) { +/// fn resolve_partial(#[with(42.0)] mut fx: impl Iterator) { /// assert_eq!((42.0, -42), fx.next().unwrap()) /// } /// ```