From 4b2219b01d938200e323147dcd2be12844ec0217 Mon Sep 17 00:00:00 2001 From: Chuck Adams Date: Wed, 20 Mar 2019 15:02:21 -0600 Subject: [PATCH] close #35246 - change AVG_TEMPERATURES to avgTemperatures in instructions (#35537) --- ...uring-assignment-to-assign-variables-from-objects.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-objects.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-objects.english.md index 4cf978131d..f8feea3427 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-objects.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-objects.english.md @@ -19,7 +19,7 @@ You may read it as "get the field x and copy the value into a ## Instructions
-Use destructuring to obtain the average temperature for tomorrow from the input object AVG_TEMPERATURES, and assign value with key tomorrow to tempOfTomorrow in line. +Use destructuring to obtain the average temperature for tomorrow from the input object avgTemperatures, and assign value with key tomorrow to tempOfTomorrow in line.
## Tests