Skip to content

Commit

Permalink
Simplify exercise data
Browse files Browse the repository at this point in the history
Some training attendees were confused by the integers in the input data
and wanted to extract it as e.g., `uint8`. Replace the integers with
text to make that less likely.
  • Loading branch information
bbannier committed Jun 14, 2024
1 parent 99d6fb2 commit fe44c63
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/parsing_exercise_naive_csv.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Assuming the following simplified CSV format:
A sample input would be

```csv
1,a,ABC
2,b,DEF
3,c,GHI
I,a,ABC
J,b,DEF
K,c,GHI
```

```admonish note
Expand Down Expand Up @@ -98,7 +98,7 @@ spicy-driver csv_naive.spicy -f input.csv

```console
$ spicy-driver csv_naive.spicy -f input.csv
[[b"1", b"a", b"ABC"], [b"2", b"b", b"DEF"], [b"3", b"c", b"GHI"]]
[[b"I", b"a", b"ABC"], [b"J", b"b", b"DEF"], [b"K", b"c", b"GHI"]]
```

<details>
Expand Down

0 comments on commit fe44c63

Please sign in to comment.