about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorJoseph Crail <jbcrail@gmail.com>2015-03-12 22:42:38 -0400
committerJoseph Crail <jbcrail@gmail.com>2015-03-13 19:25:18 -0400
commitfcf3f3209accbb9240ea44a24165e35e50eba1d2 (patch)
treefeee63126e0c9c3457595881e940eb52462da586 /src/liballoc
parent3e4be02b80a3dd27bce20870958fe0aef7e7336d (diff)
downloadrust-fcf3f3209accbb9240ea44a24165e35e50eba1d2.tar.gz
rust-fcf3f3209accbb9240ea44a24165e35e50eba1d2.zip
Remove explicit syntax highlight from docs.
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
-rw-r--r--src/liballoc/boxed.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index 748eb9dcb2f..8befb0579c3 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -94,7 +94,7 @@ use heap::deallocate;
 /// With simple pipes, without `Arc`, a copy would have to be made for each
 /// task.
 ///
-/// ```rust
+/// ```
 /// use std::sync::Arc;
 /// use std::thread;
 ///
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index 6d865d2bffa..451237d7596 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -64,7 +64,7 @@ use core::raw::TraitObject;
 ///
 /// The following two examples are equivalent:
 ///
-/// ```rust
+/// ```
 /// #![feature(box_syntax)]
 /// use std::boxed::HEAP;
 ///