From a079c007d718f9d330d58c4a368bd09e0886b133 Mon Sep 17 00:00:00 2001 From: Glenn Jackman Date: Thu, 24 Jul 2025 11:39:07 -0400 Subject: [PATCH] Recycling Robot: incorrect return value in example --- exercises/concept/recycling-robot/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/recycling-robot/.docs/instructions.md b/exercises/concept/recycling-robot/.docs/instructions.md index c6ddbd2f63..117a24171e 100644 --- a/exercises/concept/recycling-robot/.docs/instructions.md +++ b/exercises/concept/recycling-robot/.docs/instructions.md @@ -83,7 +83,7 @@ isElectronic(new Duck()); // => false isElectronic(new WashingMachine()); -// => false +// => true ``` ### 6. Check if a value is a non empty array