Skip to content

Commit

Permalink
Update instructions.md (#2804)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasantony12 authored Jun 3, 2024
1 parent d849a26 commit 18ed1b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exercises/concept/bird-watcher/.docs/instructions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Instructions

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

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

Expand Down Expand Up @@ -49,7 +49,7 @@ birdCount.hasDayWithoutBirds();

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

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.
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.

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

## 6. Calculate the number of busy days

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

```java
Expand Down

0 comments on commit 18ed1b0

Please sign in to comment.