Skip to content

Commit

Permalink
Update reader.rs
Browse files Browse the repository at this point in the history
just a little typo,

love the project!
  • Loading branch information
ntr-808 authored and BurntSushi committed Mar 21, 2017
1 parent 3c776be commit cfc1ff2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ impl<R: io::Read> Reader<R> {
/// Returns a *copy* of the first record in the CSV data as strings.
///
/// This method may be called at any time and regardless of whether
/// `no_headers` is set or not.
/// `has_headers` is set or not.
///
/// ### Example
///
Expand All @@ -329,7 +329,7 @@ impl<R: io::Read> Reader<R> {
/// assert_eq!(rows[0], vec![s("1"), s("2"), s("3")]);
/// ```
///
/// Note that if `no_headers` is called on the CSV reader, the rows
/// Note that if `has_headers` is called on the CSV reader, the rows
/// returned in this example include the first record:
///
/// ```rust
Expand Down

0 comments on commit cfc1ff2

Please sign in to comment.