From 2a2ea431ac353ee2edbf0b20baf3c4ed17bffce2 Mon Sep 17 00:00:00 2001 From: timofey Date: Thu, 27 Apr 2023 07:40:05 +0000 Subject: [PATCH] Iterative docs fix --- src/func/controlflow.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/func/controlflow.rs b/src/func/controlflow.rs index 807032b..a54b26a 100644 --- a/src/func/controlflow.rs +++ b/src/func/controlflow.rs @@ -39,9 +39,9 @@ pub type IterativeWrapped<'a, G> = <>::T as WeakFunctor>::F< /// Value passed to [`Monad::iibind`]. pub trait Iterative<'a>: 'a + Sized { - /// [`ControlFlow::Continue`] + /// [`ControlFlow::Continue`]. type A: 'a; - /// [`ControlFlow::Break`] + /// [`ControlFlow::Break`]. type B: 'a; /// Corresponding [`WeakFunctor`]. type T: 'a + ?Sized + WeakFunctor;