Skip to content

Commit e4d7c2a

Browse files
committed
Grammar fixes
1 parent 27055b2 commit e4d7c2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/have-the-last-say/problem/problem.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Country: Austria, Capital: Vienna
1212

1313
The list of countries will be picked at random, so the CSV will be different each time your program runs.
1414

15-
When using `fgetcsv` there a bunch of arguments which change the behaviour of the way the CSV is parsed. In our case we
15+
When using `fgetcsv` there's a bunch of arguments which change the behaviour of the way the CSV is parsed. In our case we
1616
want to change the `separator` argument, which defaults to a comma `,`. We need it to be the
1717
pipe `|` character.
1818

@@ -46,7 +46,7 @@ Note: only the values changed from the defaults are specified!
4646
----------------------------------------------------------------------
4747
## HINTS
4848

49-
You will need to open the filer for writing before using `fgetcsv` you can do that using `fopen`.
49+
You will need to open the file for writing before using `fgetcsv` you can do that using `fopen`.
5050

5151
`fgetcsv` will return *one* line at a time
5252

0 commit comments

Comments
 (0)