about summary refs log tree commit diff
path: root/src/libserialize
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-17 15:20:27 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-17 15:20:27 +0530
commit0b463b075e221a779ee65d90f603447baf6fe2cb (patch)
treedf1c86ae3fa09eae3899d7cdf9bd7d9293d6cf8e /src/libserialize
parent46200e5090c94f2ab1812a00c0fd778a6784e2e9 (diff)
parentfcf3f3209accbb9240ea44a24165e35e50eba1d2 (diff)
downloadrust-0b463b075e221a779ee65d90f603447baf6fe2cb.tar.gz
rust-0b463b075e221a779ee65d90f603447baf6fe2cb.zip
Rollup merge of #23329 - jbcrail:rm-syntax-highlight, r=sanxiyn
 As suggested by @steveklabnik in #23254, I removed the redundant Rust syntax highlighting from the documentation.
Diffstat (limited to 'src/libserialize')
-rw-r--r--src/libserialize/hex.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libserialize/hex.rs b/src/libserialize/hex.rs
index 26994a6d79d..1f8d45a007d 100644
--- a/src/libserialize/hex.rs
+++ b/src/libserialize/hex.rs
@@ -31,7 +31,7 @@ impl ToHex for [u8] {
     ///
     /// # Examples
     ///
-    /// ```rust
+    /// ```
     /// extern crate serialize;
     /// use serialize::hex::ToHex;
     ///
@@ -100,7 +100,7 @@ impl FromHex for str {
     ///
     /// This converts a string literal to hexadecimal and back.
     ///
-    /// ```rust
+    /// ```
     /// extern crate serialize;
     /// use serialize::hex::{FromHex, ToHex};
     ///