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
73
73
74
74
Used to inline docs, instead of linking out to separate page.
75
75
76
- ``` rust
76
+ ``` rust,ignore
77
77
#[doc(inline)]
78
78
pub use bar::Bar;
79
79
@@ -88,7 +88,7 @@ mod bar {
88
88
89
89
Used to prevent linking out to separate page or anywhere.
90
90
91
- ``` rust
91
+ ``` rust,ignore
92
92
// Example from libcore/prelude
93
93
#[doc(no_inline)]
94
94
pub use crate::mem::drop;
@@ -98,7 +98,7 @@ pub use crate::mem::drop;
98
98
99
99
Using this tells ` rustdoc ` not to include this in documentation:
100
100
101
- ``` rust,editable
101
+ ``` rust,editable,ignore
102
102
// Example from the futures-rs library
103
103
#[doc(hidden)]
104
104
pub use self::async_await::*;
You can’t perform that action at this time.
0 commit comments