Skip to content

Commit

Permalink
fix ups
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed May 23, 2017
1 parent 6f24780 commit 9937e41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ This example shows how to read CSV data from stdin into your own custom struct.
By default, the member names of the struct are matched with the values in the
header record of your CSV data.

```no_run
```rust
extern crate csv;
#[macro_use]
extern crate serde_derive;
Expand Down
4 changes: 2 additions & 2 deletions src/tutorial.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2268,7 +2268,7 @@ this with Serde is a bit trickier than before, because we need to change our
like:
```no_run
# //tutorial-perf-serde-02.rs
//tutorial-perf-serde-02.rs
# extern crate csv;
# extern crate serde;
# #[macro_use]
Expand Down Expand Up @@ -2358,7 +2358,7 @@ general, this means using `&[u8]` instead of `&str` and `ByteRecord` instead
of `StringRecord`:
```no_run
# //tutorial-perf-serde-03.rs
//tutorial-perf-serde-03.rs
# extern crate csv;
# extern crate serde;
# #[macro_use]
Expand Down

0 comments on commit 9937e41

Please sign in to comment.