about summary refs log tree commit diff
path: root/src/libcore/option.rs
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/libcore/option.rs
parent3e4be02b80a3dd27bce20870958fe0aef7e7336d (diff)
downloadrust-fcf3f3209accbb9240ea44a24165e35e50eba1d2.tar.gz
rust-fcf3f3209accbb9240ea44a24165e35e50eba1d2.zip
Remove explicit syntax highlight from docs.
Diffstat (limited to 'src/libcore/option.rs')
-rw-r--r--src/libcore/option.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/option.rs b/src/libcore/option.rs
index 2dd8bf67220..455c68d4319 100644
--- a/src/libcore/option.rs
+++ b/src/libcore/option.rs
@@ -897,7 +897,7 @@ impl<A, V: FromIterator<A>> FromIterator<Option<A>> for Option<V> {
     /// Here is an example which increments every integer in a vector,
     /// checking for overflow:
     ///
-    /// ```rust
+    /// ```
     /// use std::u16;
     ///
     /// let v = vec!(1, 2);