about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorWho? Me?! <mark-i-m@users.noreply.github.com>2020-08-16 14:51:37 -0500
committerGitHub <noreply@github.com>2020-08-17 04:51:37 +0900
commit2936e4e93bc294b99ed0a8d6804aae7a0b20a735 (patch)
tree06c56c3866968c0f4662cd3236051c929dbae09c /src/doc/rustc-dev-guide
parent40a8934753c97981d07198afb428fb139aaa846d (diff)
downloadrust-2936e4e93bc294b99ed0a8d6804aae7a0b20a735.tar.gz
rust-2936e4e93bc294b99ed0a8d6804aae7a0b20a735.zip
Remove unneeded hashmarks (#826)
Co-authored-by: Joshua Nelson <jyn514@gmail.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/serialization.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/rustc-dev-guide/src/serialization.md b/src/doc/rustc-dev-guide/src/serialization.md
index 292ffc5467b..d28df6ec1e1 100644
--- a/src/doc/rustc-dev-guide/src/serialization.md
+++ b/src/doc/rustc-dev-guide/src/serialization.md
@@ -35,10 +35,10 @@ usually implemented by [derives]. These generate implementations that forward
 deserialization to the fields of the struct or enum. For a struct those impls
 look something like this:
 
-```rust,ingore
-# #![feature(rustc_private)]
-# extern crate rustc_serialize;
-# use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
+```rust,ignore
+#![feature(rustc_private)]
+extern crate rustc_serialize;
+use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
 
 struct MyStruct {
     int: u32,