From 3a836a4e90821a8587b4a50ce8580e55c1b122c4 Mon Sep 17 00:00:00 2001 From: michele Date: Sat, 27 Nov 2021 15:41:44 +0100 Subject: [PATCH] Fixed docs --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()) /// } /// ```