From 7cf0e032131078632a2af97dac8ac51c9e254d9f Mon Sep 17 00:00:00 2001 From: Christian Provenzano <18606244+caproven@users.noreply.github.com> Date: Mon, 15 Jul 2019 19:29:37 +0000 Subject: [PATCH] Moved position of ')' in a code block to permit proper assignment statement --- 1-js/05-data-types/09-destructuring-assignment/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/09-destructuring-assignment/article.md b/1-js/05-data-types/09-destructuring-assignment/article.md index d86574b0..50b68752 100644 --- a/1-js/05-data-types/09-destructuring-assignment/article.md +++ b/1-js/05-data-types/09-destructuring-assignment/article.md @@ -349,7 +349,7 @@ To show JavaScript that it's not a code block, we can make it a part of an expre let title, width, height; // okay now -*!*(*/!*{title, width, height}*!*)*/!* = {title: "Menu", width: 200, height: 100}; +*!*(*/!*{title, width, height} = {title: "Menu", width: 200, height: 100}*!*)*/!*; alert( title ); // Menu ```