Skip to content

Commit

Permalink
Fixed docs
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Nov 27, 2021
1 parent 0fb498f commit 3a836a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -420,12 +420,12 @@ use quote::ToTokens;
/// }
///
/// #[rstest]
/// fn resolve_by_default<I: Debug + PartialEq>(mut fx: impl Iterator<Item=I>) {
/// fn resolve_by_default(mut fx: impl Iterator<Item=(u32, i32)>) {
/// assert_eq!((42, -42), fx.next().unwrap())
/// }
///
/// #[rstest]
/// fn resolve_partial<I: Debug + PartialEq>(#[with(42.0)] mut fx: impl Iterator<Item=I>) {
/// fn resolve_partial(#[with(42.0)] mut fx: impl Iterator<Item=(f32, i32)>) {
/// assert_eq!((42.0, -42), fx.next().unwrap())
/// }
/// ```
Expand Down

0 comments on commit 3a836a4

Please sign in to comment.