From 65eefe01877cf19becc969c7bf7c807314ce9bda Mon Sep 17 00:00:00 2001 From: Gabriele Coletta Date: Tue, 2 Jun 2020 11:57:57 +0200 Subject: [PATCH] fixed wrong formatting --- 1-js/05-data-types/10-destructuring-assignment/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/10-destructuring-assignment/article.md b/1-js/05-data-types/10-destructuring-assignment/article.md index 626fd1fd..46aa760a 100644 --- a/1-js/05-data-types/10-destructuring-assignment/article.md +++ b/1-js/05-data-types/10-destructuring-assignment/article.md @@ -138,7 +138,7 @@ alert(`${guest} ${admin}`); // Pete Jane (successfully swapped!) Here we create a temporary array of two variables and immediately destructure it in swapped order. We can swap more than two variables this way. -``` + ### The rest '...'