about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-04-07 22:10:55 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-04-07 22:10:55 +0530
commitae64d8e41538fc760b20185e3f2d63826bc1bd34 (patch)
tree9e1ed28a3f478a1259f2872ef4a37318f52a1b81 /src/libcore
parentb3bcbb1a22f6aa8c39055100b920904283fc8c2c (diff)
downloadrust-ae64d8e41538fc760b20185e3f2d63826bc1bd34.tar.gz
rust-ae64d8e41538fc760b20185e3f2d63826bc1bd34.zip
doc ignore (fixup #24059)
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/marker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index 9b16bd6fe84..d6a7126a883 100644
--- a/src/libcore/marker.rs
+++ b/src/libcore/marker.rs
@@ -324,7 +324,7 @@ impl<A:?Sized,R:?Sized,T:?Sized> PhantomFn<A,R> for T { }
 /// that has two pointers of type `*const T`, presumably pointing into
 /// an array somewhere:
 ///
-/// ```
+/// ```ignore
 /// struct Slice<'a, T> {
 ///     start: *const T,
 ///     end: *const T,