File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ Below are a few examples of the most common `#[doc]` attributes used with `rustd
7373
7474Used to inline docs, instead of linking out to separate page.
7575
76- ``` rust
76+ ``` rust,ignore
7777#[doc(inline)]
7878pub use bar::Bar;
7979
@@ -88,7 +88,7 @@ mod bar {
8888
8989Used to prevent linking out to separate page or anywhere.
9090
91- ``` rust
91+ ``` rust,ignore
9292// Example from libcore/prelude
9393#[doc(no_inline)]
9494pub use crate::mem::drop;
@@ -98,7 +98,7 @@ pub use crate::mem::drop;
9898
9999Using this tells ` rustdoc ` not to include this in documentation:
100100
101- ``` rust,editable
101+ ``` rust,editable,ignore
102102// Example from the futures-rs library
103103#[doc(hidden)]
104104pub use self::async_await::*;
You can’t perform that action at this time.
0 commit comments