Remove unneeded hashmarks (#826)
Co-authored-by: Joshua Nelson <jyn514@gmail.com>
This commit is contained in:
parent
40a8934753
commit
2936e4e93b
1 changed files with 4 additions and 4 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue