From b65033572c5f7c02ee50c59324c8300b1080b4f1 Mon Sep 17 00:00:00 2001 From: timofey Date: Sun, 30 Jul 2023 12:21:18 +0000 Subject: [PATCH] `Iterative` docs remove `crate::` --- src/func/controlflow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/func/controlflow.rs b/src/func/controlflow.rs index 4eb47b4..af45e71 100644 --- a/src/func/controlflow.rs +++ b/src/func/controlflow.rs @@ -56,7 +56,7 @@ pub type IterativeWrapped<'a, F> = /// Value passed to [`Monad::iterate`]. /// -/// [`Monad::iterate`]: crate::func::Monad::iterate +/// [`Monad::iterate`]: super::Monad::iterate pub trait Iterative<'a>: 'a + Sized { /// [`ControlFlow::Break`]. type B: 'a;