From 9a07b1fb23aea6ce3227b6f743d6eea0bc18141a Mon Sep 17 00:00:00 2001 From: Jake Wilson Date: Tue, 12 Nov 2019 19:26:58 +0000 Subject: [PATCH] Fix small grammar mistake in closure makeArmy task --- 1-js/06-advanced-functions/03-closure/8-make-army/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/03-closure/8-make-army/task.md b/1-js/06-advanced-functions/03-closure/8-make-army/task.md index ede8fd0458..93e64f2d02 100644 --- a/1-js/06-advanced-functions/03-closure/8-make-army/task.md +++ b/1-js/06-advanced-functions/03-closure/8-make-army/task.md @@ -31,5 +31,5 @@ army[5](); // and number 5 also outputs 10... // ... all shooters show 10 instead of their 0, 1, 2, 3... ``` -Why all shooters show the same? Fix the code so that they work as intended. +Why do all of the shooters show the same value? Fix the code so that they work as intended.