Remove unneeded hashmarks (#826)

Co-authored-by: Joshua Nelson <jyn514@gmail.com>
This commit is contained in:
Who? Me?! 2020-08-16 14:51:37 -05:00 committed by GitHub
parent 0ecf777a50
commit 369ec46a1b
1 changed files with 4 additions and 4 deletions

View File

@ -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,