summary refs log tree commit diff
path: root/enumn/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'enumn/src/lib.rs')
-rw-r--r--enumn/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/enumn/src/lib.rs b/enumn/src/lib.rs
index 9f566e6..7a04303 100644
--- a/enumn/src/lib.rs
+++ b/enumn/src/lib.rs
@@ -51,7 +51,7 @@
 //! attribute. If a `repr` is specified, the input to `n` will be required to be
 //! of that type.
 //!
-//! ```rust
+//! ```ignore
 //! use enumn::N;
 //!
 //! #[derive(N)]
@@ -73,7 +73,7 @@
 //! On the other hand if no `repr` is specified then we get a signature that is
 //! generic over a variety of possible types.
 //!
-//! ```rust
+//! ```ignore
 //! # enum E {}
 //! #
 //! impl E {