result: remove #[cfg(doc)]

This commit is contained in:
AF 2023-07-30 11:25:52 +00:00
parent bf91751199
commit a2d6ffa256

View File

@ -8,10 +8,11 @@
//! For [`Option<A>`] alternative see [`option`].
//!
//! For values that are never [`Err`], see [`solo`].
//!
//! [`option`]: crate::func::instances::option
//! [`solo`]: crate::func::instances::solo
use crate::func::class_prelude::*;
#[cfg(doc)]
use crate::func::instances::*;
#[derive(SharedFunctorAny)]
pub struct ResultInstance<E>(E);