From 07f61bd3854d64f229da1b50da9937ec0b028bb7 Mon Sep 17 00:00:00 2001 From: Flame4Fire <60059067+Flame4Fire@users.noreply.github.com> Date: Sun, 14 Jun 2026 19:28:22 +0200 Subject: [PATCH] Fixed grammar error in task.md Changed "Object" to its plural form --- 1-js/04-object-basics/06-constructor-new/3-accumulator/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/06-constructor-new/3-accumulator/task.md b/1-js/04-object-basics/06-constructor-new/3-accumulator/task.md index c2c44881e8..6987b3b1eb 100644 --- a/1-js/04-object-basics/06-constructor-new/3-accumulator/task.md +++ b/1-js/04-object-basics/06-constructor-new/3-accumulator/task.md @@ -6,7 +6,7 @@ importance: 5 Create a constructor function `Accumulator(startingValue)`. -Object that it creates should: +Objects that it creates should: - Store the "current value" in the property `value`. The starting value is set to the argument of the constructor `startingValue`. - The `read()` method should use `prompt` to read a new number and add it to `value`.