From 475a6cc46568911a7618f95999de06525a2c8ca3 Mon Sep 17 00:00:00 2001 From: Kim Altintop Date: Tue, 8 Aug 2023 09:37:18 +0200 Subject: Fix (ignore) doctests --- src/iter.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/iter.rs b/src/iter.rs index 1289c52..724c44b 100644 --- a/src/iter.rs +++ b/src/iter.rs @@ -8,8 +8,8 @@ use std::ops::ControlFlow; /// It is a common pattern that instantiating an effectful iterator is fallible, /// while traversing it is fallible, too. This yields unwieldy signatures like: /// -/// ```no_run -/// fn my_iterator() -> Result>, E> +/// ```ignore +/// fn my_iterator() -> Result>, E> /// ``` /// /// Often, however, we can unify the error types (`E` and `F` above), which @@ -17,8 +17,8 @@ use std::ops::ControlFlow; /// infallible, but an initialiser error is returned upon the first call to /// `next()`. Ie.: /// -/// ```no_run -/// fn my_iterator() -> impl Iterator> +/// ```ignore +/// fn my_iterator() -> impl Iterator> /// ``` #[must_use = "iterators are lazy and do nothing unless consumed"] pub struct Iter { -- cgit v1.2.3