Skip to content

Commit a7312cc

Browse files
authored
Update instructions.md (exercism#2059)
fix incrementDayCount() to the correct incrementTodaysCount
1 parent f95f76d commit a7312cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ birdCount.getToday();
2626

2727
## 3. Increment today's count
2828

29-
Implement the `BirdWatcher.incrementDayCount()` method to increment today's count:
29+
Implement the `BirdWatcher.incrementTodaysCount()` method to increment today's count:
3030

3131
```java
3232
int[] birdsPerDay = { 2, 5, 0, 7, 4, 1 };
3333
BirdWatcher birdCount = new BirdWatcher(birdsPerDay);
34-
birdCount.incrementDayCount();
34+
birdCount.incrementTodaysCount();
3535
birdCount.getToday();
3636
// => 2
3737
```

0 commit comments

Comments
 (0)