Remove unneeded hashmarks (#826)
Co-authored-by: Joshua Nelson <jyn514@gmail.com>
This commit is contained in:
parent
0ecf777a50
commit
369ec46a1b
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue