Skip to content

Commit 18ed1b0

Browse files
Update instructions.md (exercism#2804)
1 parent d849a26 commit 18ed1b0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

exercises/concept/bird-watcher/.docs/instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Instructions
22

3-
You're an avid bird watcher that keeps track of how many birds have visited your garden in the last seven days.
3+
You're an avid bird watcher who keeps track of how many birds have visited your garden in the last seven days.
44

55
You have six tasks, all dealing with the numbers of birds that visited your garden.
66

@@ -49,7 +49,7 @@ birdCount.hasDayWithoutBirds();
4949

5050
## 5. Calculate the number of visiting birds for the first number of days
5151

52-
Implement the `BirdWatcher.getCountForFirstDays()` method that returns the number of birds that have visited your garden from the start of the week, but limit the count to the specified number of days from the start of the week.
52+
Implement the `BirdWatcher.getCountForFirstDays()` method that returns the number of birds that have visited your garden from the start of the week, but limit the count to the specified number of days from the beginning of the week.
5353

5454
```java
5555
int[] birdsPerDay = { 2, 5, 0, 7, 4, 1 };
@@ -60,7 +60,7 @@ birdCount.getCountForFirstDays(4);
6060

6161
## 6. Calculate the number of busy days
6262

63-
Some days are busier that others. A busy day is one where five or more birds have visited your garden.
63+
Some days are busier than others. A busy day is one where five or more birds have visited your garden.
6464
Implement the `BirdWatcher.getBusyDays()` method to return the number of busy days:
6565

6666
```java

0 commit comments

Comments
 (0)