Skip to content

Commit

Permalink
doc: update tutorial.rs
Browse files Browse the repository at this point in the history
This updates the output to match actual output at present.

PR #303
  • Loading branch information
krmpotic committed Mar 4, 2023
1 parent e0a8b8b commit f29c9d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tutorial.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,9 @@ header1,header2
foo,bar
quux,baz,foobar
$ ./target/debug/csvtutor < invalid
StringRecord { position: Some(Position { byte: 16, line: 2, record: 1 }), fields: ["foo", "bar"] }
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: UnequalLengths { pos: Some(Position { byte: 24, line: 3, record: 2 }), expected_len: 2, len: 3 }', /checkout/src/libcore/result.rs:859
note: Run with `RUST_BACKTRACE=1` for a backtrace.
StringRecord(["foo", "bar"])
thread 'main' panicked at 'a CSV record: Error(UnequalLengths { pos: Some(Position { byte: 24, line: 3, record: 2 }), expected_len: 2, len: 3 })', src/main.rs:13:29
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
```
What happened here? First and foremost, we should talk about why the CSV data
Expand Down

0 comments on commit f29c9d7

Please sign in to comment.