diff --git a/alga/src/general/one_operator.rs b/alga/src/general/one_operator.rs index be5875f..5b3fed2 100644 --- a/alga/src/general/one_operator.rs +++ b/alga/src/general/one_operator.rs @@ -85,7 +85,7 @@ pub trait AbstractQuasigroup: /// Implements the quasigroup trait for types provided. /// # Examples /// -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # use alga::general::{AbstractMagma, AbstractQuasigroup, Additive, TwoSidedInverse}; @@ -146,7 +146,7 @@ pub trait AbstractSemigroup: PartialEq + AbstractMagma { /// Implements the semigroup trait for types provided. /// # Examples /// -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # use alga::general::{AbstractMagma, AbstractSemigroup, Additive}; @@ -191,7 +191,7 @@ pub trait AbstractLoop: AbstractQuasigroup + Identity {} /// Implements the loop trait for types provided. /// # Examples /// -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # use alga::general::{AbstractMagma, AbstractLoop, Additive, TwoSidedInverse, Identity}; @@ -262,7 +262,7 @@ pub trait AbstractMonoid: AbstractSemigroup + Identity { /// Implements the monoid trait for types provided. /// # Examples /// -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # use alga::general::{AbstractMagma, AbstractMonoid, Additive, Identity}; @@ -299,7 +299,7 @@ pub trait AbstractGroup: AbstractLoop + AbstractMonoid {} /// Implements the group trait for types provided. /// # Examples /// -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # use alga::general::{AbstractMagma, AbstractGroup, Additive, TwoSidedInverse, Identity}; @@ -369,7 +369,7 @@ pub trait AbstractGroupAbelian: AbstractGroup { /// Implements the Abelian group trait for types provided. /// # Examples /// -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # use alga::general::{AbstractMagma, AbstractGroupAbelian, Additive, TwoSidedInverse, Identity}; diff --git a/alga/src/general/two_operators.rs b/alga/src/general/two_operators.rs index d56243a..8998009 100644 --- a/alga/src/general/two_operators.rs +++ b/alga/src/general/two_operators.rs @@ -68,7 +68,7 @@ pub trait AbstractRing: /// Implements the ring trait for types provided. /// # Examples /// -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # use alga::general::{AbstractMagma, AbstractRing, Additive, Multiplicative, TwoSidedInverse, Identity}; @@ -158,7 +158,7 @@ pub trait AbstractRingCommutative: /// Implements the field trait for types provided. /// # Examples /// -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # use alga::general::{AbstractMagma, AbstractField, Additive, Multiplicative, TwoSidedInverse, Identity}; diff --git a/alga/src/macros.rs b/alga/src/macros.rs index 309981e..09fd986 100644 --- a/alga/src/macros.rs +++ b/alga/src/macros.rs @@ -16,7 +16,7 @@ /// Implements empty traits aka marker traits for types provided. /// # Examples /// -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # fn main() {} @@ -24,7 +24,7 @@ /// struct Struct; /// impl_marker!(Marker; u32; Struct); /// ``` -/// ``` +/// ```ignore /// # #[macro_use] /// # extern crate alga; /// # use std::fmt::Debug;