From 32feec12ab26bbb4c528bab19967678148674e9d Mon Sep 17 00:00:00 2001 From: Glenn Jackman Date: Thu, 24 Jul 2025 11:36:25 -0400 Subject: [PATCH] Bird Watcher: correct instructions --- exercises/concept/bird-watcher/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/bird-watcher/.docs/instructions.md b/exercises/concept/bird-watcher/.docs/instructions.md index 5ff31058bd..ee99091961 100644 --- a/exercises/concept/bird-watcher/.docs/instructions.md +++ b/exercises/concept/bird-watcher/.docs/instructions.md @@ -46,7 +46,7 @@ You figured out that this bird always spent every second day in your garden. You do not know exactly where it was in between those days but definitely not in your garden. Your bird watcher intuition also tells you that the bird was in your garden on the first day that you tracked in your list. -Given this new information, write a function `fixBirdCountLog` that takes an array of birds counted per day as an argument. It should correct the counting mistake and return the modified array. +Given this new information, write a function `fixBirdCountLog` that takes an array of birds counted per day as an argument. It should correct the counting mistake by modifying the given array. ```javascript birdsPerDay = [2, 5, 0, 7, 4, 1];